diff options
author | xtraeme <xtraeme@pkgsrc.org> | 2005-03-16 05:31:23 +0000 |
---|---|---|
committer | xtraeme <xtraeme@pkgsrc.org> | 2005-03-16 05:31:23 +0000 |
commit | b82ff281ab649564707bdc12e9c552f83a780585 (patch) | |
tree | 252118a1fcdf30f2323f821d305c93da076310d6 /sysutils/mklivecd/files | |
parent | 9c409c186d0ac079e108f40aad47ac108f4d9842 (diff) | |
download | pkgsrc-b82ff281ab649564707bdc12e9c552f83a780585.tar.gz |
Update to 0.10:
* Copy all stage 1.5 files from GRUB into $ISODIR/grub/, useful to boot
from any existing partition in the disk.
* Show usage when the target is not valid.
Diffstat (limited to 'sysutils/mklivecd/files')
-rwxr-xr-x | sysutils/mklivecd/files/mklivecd.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/sysutils/mklivecd/files/mklivecd.sh b/sysutils/mklivecd/files/mklivecd.sh index 8478404d02d..aa2e51eeab4 100755 --- a/sysutils/mklivecd/files/mklivecd.sh +++ b/sysutils/mklivecd/files/mklivecd.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $NetBSD: mklivecd.sh,v 1.17 2005/01/11 02:08:53 xtraeme Exp $ +# $NetBSD: mklivecd.sh,v 1.18 2005/03/16 05:31:23 xtraeme Exp $ # # Copyright (c) 2004, 2005 The NetBSD Foundation, Inc. # All rights reserved. @@ -54,7 +54,7 @@ : ${MKISOFS_FIXED_ARGS:=-no-emul-boot -boot-load-size 30 -boot-info-table} : ${BOOTDIR:=boot/grub} : ${BOOTIMAGE:=stage2_eltorito} -: ${GRUB_FILES:=stage2_eltorito iso9660_stage1_5} +: ${GRUB_FILES:=stage2_eltorito iso9660_stage1_5 xfs_stage1_5 ufs2_stage1_5 reiserfs_stage1_5 jfs_stage1_5 ffs_stage1_5 fat_stage1_5 e2fs_stage1_5} trap "echo; showmsg \"Process cancelled!\"; bye 127" INT QUIT @@ -374,7 +374,7 @@ _EOF_ cat > $ISODIR/etc/rc.d/root <<_EOF_ #!/bin/sh # -# \$NetBSD: mklivecd.sh,v 1.17 2005/01/11 02:08:53 xtraeme Exp $ +# \$NetBSD: mklivecd.sh,v 1.18 2005/03/16 05:31:23 xtraeme Exp $ # # PROVIDE: root @@ -748,6 +748,9 @@ case "$target" in checkconf do_cdlive burn ;; + *) + usage + ;; esac exit 0 # agur! |