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/.cvsignore | 2 ++ tools/i386/netboot/grub | Bin 0 -> 260487 bytes tools/i386/netboot/make_boot_network | 18 ++++++++++++++++++ tools/i386/netboot/stage1.3c59x | Bin 0 -> 512 bytes tools/i386/netboot/stage1.3c90x | Bin 0 -> 512 bytes tools/i386/netboot/stage2.3c59x | Bin 0 -> 86244 bytes tools/i386/netboot/stage2.3c90x | Bin 0 -> 88260 bytes 7 files changed, 20 insertions(+) create mode 100644 tools/i386/netboot/.cvsignore create mode 100755 tools/i386/netboot/grub create mode 100755 tools/i386/netboot/make_boot_network create mode 100755 tools/i386/netboot/stage1.3c59x create mode 100755 tools/i386/netboot/stage1.3c90x create mode 100644 tools/i386/netboot/stage2.3c59x create mode 100644 tools/i386/netboot/stage2.3c90x (limited to 'tools/i386') diff --git a/tools/i386/netboot/.cvsignore b/tools/i386/netboot/.cvsignore new file mode 100644 index 000000000..60db9a42c --- /dev/null +++ b/tools/i386/netboot/.cvsignore @@ -0,0 +1,2 @@ +stage1 +stage2 diff --git a/tools/i386/netboot/grub b/tools/i386/netboot/grub new file mode 100755 index 000000000..0837b0349 Binary files /dev/null and b/tools/i386/netboot/grub differ 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 <