From 31de738c99ce16ee26595d7bf2d6e9500a5a10b1 Mon Sep 17 00:00:00 2001 From: Pascal Rigaux Date: Sat, 5 Aug 2000 14:29:16 +0000 Subject: no_comment --- tools/i386/netboot/make_boot_network | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 tools/i386/netboot/make_boot_network (limited to 'tools/i386/netboot/make_boot_network') diff --git a/tools/i386/netboot/make_boot_network b/tools/i386/netboot/make_boot_network new file mode 100755 index 000000000..282c96c4c --- /dev/null +++ b/tools/i386/netboot/make_boot_network @@ -0,0 +1,18 @@ +#!/bin/sh + +[ -z "$1" ] && { echo "usage: $0 (eg: 3c59x)" ; exit 1; } + +ks="../../../install/ks.cfg" +[ -e $ks ] || { echo "missing file $ks, create one based on $ks.default"; exit 1; } + + +ln -sf stage1.$1 stage1 +ln -sf stage2.$1 stage2 + +mformat a: +mcopy {menu.lst,stage1,stage2} a: +mcopy $ks a: + +./grub --batch <