diff options
author | Sebastian Schmelzer | 2011-04-29 17:33:19 +0200 |
---|---|---|
committer | Sebastian Schmelzer | 2011-04-29 17:33:19 +0200 |
commit | eda8d2205ff5b545f9aa087898f23f9a573bafdc (patch) | |
tree | fca4ad236ec785c7b28845c3faee139c9629e047 /create-installer | |
parent | switch from extlinux back to syslinux (diff) | |
download | usb-boot-stick-eda8d2205ff5b545f9aa087898f23f9a573bafdc.tar.gz usb-boot-stick-eda8d2205ff5b545f9aa087898f23f9a573bafdc.tar.xz usb-boot-stick-eda8d2205ff5b545f9aa087898f23f9a573bafdc.zip |
update create installer script to use syslinux as well ..
Diffstat (limited to 'create-installer')
-rwxr-xr-x | create-installer | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/create-installer b/create-installer index 7f0bdbd..ddec96d 100755 --- a/create-installer +++ b/create-installer @@ -24,7 +24,7 @@ mkdir -p $ROOT_DIR/installer/tmp/share \ $ROOT_DIR/installer/tmp/boot cp -f $SYSLINUX/mbr/mbr.bin $ROOT_DIR/installer/tmp/share -cp -f $SYSLINUX/extlinux/extlinux -i $ROOT_DIR/installer/tmp/bin +cp -f $SYSLINUX/linux/syslinux $ROOT_DIR/installer/tmp/bin [ ! -f $ROOT_DIR/build/kernel-preboot-latest ] && build.kernel.sh cp -f $ROOT_DIR/build/kernel-preboot-latest $ROOT_DIR/installer/tmp/boot/kernel @@ -35,6 +35,7 @@ cp -f $ROOT_DIR/build/initramfs-default $ROOT_DIR/installer/tmp/boot/init cp -f $SYSLINUX/com32/menu/menu.c32 $ROOT_DIR/installer/tmp/boot/ cp -f $SYSLINUX/com32/menu/vesamenu.c32 $ROOT_DIR/installer/tmp/boot/ cp -f $ROOT_DIR/config/extlinux/* $ROOT_DIR/installer/tmp/boot/ +mv $ROOT_DIR/installer/tmp/boot/extlinux.conf $ROOT_DIR/installer/tmp/boot/syslinux.cfg cd $ROOT_DIR/installer/tmp/ tar cjf ../stick-payload.tar.bz2 * |