Displaying 4 results from an estimated 4 matches for "extfile".
Did you mean:
textfile
2014 Jul 07
2
Xen 4.4.1-rc1+ rebase
I've got a first cut of the rebase here:
git://github.com/gwd/sig-virt-xen out/update-4.4.1-rc1-ee81dda-RFC
To build it, you'll need to download the polarssl tarball:
http://xenbits.xen.org/xen-extfiles/polarssl-1.1.4-gpl.tgz
And you'll need a tarball based on (unfortunately) a private tree,
which you can find here:
git://github.com/gwd/xen base/update-4.4.1-rc1-ee81dda-RFC
This branch is based on upstream ee81dda (the current staging-4.4),
with an additional two backported commits.
To re...
2010 Jan 15
2
processing all files with certain extension in a directory
Hi all,
I'm trying to process all files with a certain extension "*.ext" in a
directory like this:
> R --slave --args /my/dir < dir_plot.r
where I then I want to do something like:
myarg <- commandArgs()
inputdir <- myarg[length(myarg)]
print(inputdir)
"for file with extension "*.ext in inputdir"
do
data = process.data(file)
outfile =
2012 Jan 06
3
[PATCH] tools: fix ipxe version issue in Makefile
...iff -r 4086e4811547 tools/firmware/etherboot/Makefile
--- a/tools/firmware/etherboot/Makefile Thu Jan 05 17:25:23 2012 +0000
+++ b/tools/firmware/etherboot/Makefile Fri Jan 06 14:30:54 2012 +0800
@@ -12,7 +12,9 @@
IPXE_GIT_TAG := 9a93db3f0947484e30e753bbd61a10b17336e20e
-IPXE_TARBALL_URL := $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_GIT_TAG).tar.gz
+IPXE_VERSION := v1.0.0
+
+IPXE_TARBALL_URL := $(XEN_EXTFILES_URL)/ipxe-git-$(IPXE_VERSION).tar.gz
D=ipxe
T=ipxe.tar.gz
Best Regards,
Yongjie Ren (Jay)
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource....
2002 Jan 31
7
x509 for hostkeys.
...USAGE
[x509v3_IPAddr]
subjectAltName=IP:$ENV::CERTIP
[x509v3_DNSName]
subjectAltName=DNS:$ENV::CERTDNS
EOF
$ CERTDNS=myipaddr; export CERTDNS
$ openssl req -new -key /etc/ssh_host_rsa_key -out HOSTKEY.csr
$ openssl x509 -req -days 365 -in HOSTKEY.csr -CA ca.crt \
-CAkey ca.key -CAcreateserial \
-extfile x509v3.cnf -extensions x509v3_DNSName \
-out HOSTKEY.crt
$ umask 077
$ cat /etc/ssh_host_rsa_key HOSTKEY.crt > /etc/ssh_host_rsa_key+cert
$ echo HostKey /etc/ssh_host_rsa_key+cert > sshd_config-test
$ sudo sshd -p 2222 -ddd -f sshd_config-test
Index: authfile.c
============================...