From e470826c6ef0cc5ee3bc29017f59bc2ffa5e138a Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Fri, 26 Jan 2001 00:27:30 +0000 Subject: adapt to mdk-stage1 automatic replacing ks.cfg --- tools/i386/netboot/.cvsignore | 1 + tools/i386/netboot/make_boot_network | 11 +++++------ 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'tools/i386/netboot') diff --git a/tools/i386/netboot/.cvsignore b/tools/i386/netboot/.cvsignore index 60db9a42c..568f8e35b 100644 --- a/tools/i386/netboot/.cvsignore +++ b/tools/i386/netboot/.cvsignore @@ -1,2 +1,3 @@ stage1 stage2 +tools/i386/netboot/automatic.para diff --git a/tools/i386/netboot/make_boot_network b/tools/i386/netboot/make_boot_network index a19065aca..b9739c486 100755 --- a/tools/i386/netboot/make_boot_network +++ b/tools/i386/netboot/make_boot_network @@ -4,17 +4,16 @@ type=$1 #[ -z "$type" ] && { echo "usage: $0 (eg: 3c59x)" ; exit 1; } [ -z "$type" ] && type=3c90x -ks="../../../install/ks.cfg" -[ -e $ks ] || { echo "missing file $ks, create one based on $ks.default"; exit 1; } - +[ -e automatic.para ] || { echo "missing file automatic.para, create one based on automatic.para.default"; exit 1; } ln -sf stage1.$type stage1 ln -sf stage2.$type stage2 mformat a: -mcopy {menu.lst,stage1,stage2} a: -mcopy $ks a: +mcopy {stage1,stage2} a: +perl -pe 'chomp; $_ .= " " . `cat automatic.para` if /^kernel/; $_ .= "\n"' menu.lst | mcopy - a:menu.lst + ./grub --batch <