From b84d2cca1da8146106b06d4e4dafe4e71fcb253f Mon Sep 17 00:00:00 2001 From: "Robert \"ar\" Gerus" Date: Thu, 2 May 2013 06:56:04 +0200 Subject: [PATCH] Updated TODO and added some examples --- TODO | 17 +++++++++-------- ...tlinux_loading_xen_and_linux_from_a_pendrive | 10 ++++++++++ .../pxelinux_loading_xen_and_linux_from_network | 10 ++++++++++ 3 files changed, 29 insertions(+), 8 deletions(-) create mode 100644 examples/extlinux_loading_xen_and_linux_from_a_pendrive create mode 100644 examples/pxelinux_loading_xen_and_linux_from_network diff --git a/TODO b/TODO index 9ae5108..ced9251 100644 --- a/TODO +++ b/TODO @@ -1,6 +1,6 @@ YES: - * Specifying rootfs location filesystem type - * Configuration examples, HOWTOs + * Specifying rootfs location filesystem type. + * Configuration examples, HOWTOs. * DNS configuration. * {pre,post}_hooks for some phases. @@ -9,8 +9,8 @@ MAYBE: ammount of transformations; will lead to awesome stuff like transforming next parts using scripts downloaded in previous parts. Might actually work now, but didn't test it yet. - * Compression algorithm autodetection based on filename OR bsdtar automagic - * Fancier OK/FAIL - at the end of the line, or somewhere + * Compression algorithm autodetection based on filename OR bsdtar automagic. + * Fancier OK/FAIL - at the end of the line, or somewhere. * A proper vim modeline for the initramfs/init script. * https. But wget in busybox doesn't and won't support it. http://lists.busybox.net/pipermail/busybox-cvs/2005-April/019949.html @@ -22,7 +22,8 @@ MAYBE: * Kernel parameter for accepted-by-default ssh keys DONE: - * Downloading rootfs over http - * Other compression algorithms - * Rootfs "overlays"/"parts" - * Start different init than /sbin/init + * Downloading rootfs over http. + * Other compression algorithms. + * Rootfs "overlays"/"parts". + * Start different init than /sbin/init. + * Added some examples. diff --git a/examples/extlinux_loading_xen_and_linux_from_a_pendrive b/examples/extlinux_loading_xen_and_linux_from_a_pendrive new file mode 100644 index 0000000..0acf7fd --- /dev/null +++ b/examples/extlinux_loading_xen_and_linux_from_a_pendrive @@ -0,0 +1,10 @@ +UI menu.c32 +PROMPT 1 +TIMEOUT 50 +DEFAULT xen + +LABEL xen + MENU LABEL xen + KERNEL mboot.c32 + APPEND xen.gz dom0_mem=3G --- vmlinuz ipcmd=link,set,dev,eth0,up ipcmd=addr,add,10.8.1.230/16,dev,eth0 rootfs_part=uuid|e31394e0-fd6e-4e75-b6dd-d36aaf650ae9/thor-dom0/thor.usbstick.tar.xz|unxz|tar rootfs_size=1200M --- /thor-dom0/initramfs-tmpfsroot.gz + diff --git a/examples/pxelinux_loading_xen_and_linux_from_network b/examples/pxelinux_loading_xen_and_linux_from_network new file mode 100644 index 0000000..9ff7a88 --- /dev/null +++ b/examples/pxelinux_loading_xen_and_linux_from_network @@ -0,0 +1,10 @@ +UI menu.c32 +PROMPT 1 +TIMEOUT 50 +DEFAULT gentoo/xen/http + +LABEL gentoo/xen/http + MENU LABEL gentoo/xen/http + KERNEL mboot.c32 + APPEND xen.gz dom0_mem=3G --- vmlinuz ipcmd=link,set,dev,eth0,up ipcmd=addr,add,10.8.1.230/16,dev,eth0 rootfs_part=url|http://10.8.13.37:8080/xen-dom0/xen.dom0.netboot.tar.xz|unxz|tar rootfs_size=1200M --- initramfs-tmpfsroot.gz +