summaryrefslogtreecommitdiffstats
path: root/tools/i386/netboot/makeImages
diff options
context:
space:
mode:
authorMystery Man <unknown@mandriva.org>2003-03-10 13:52:45 +0000
committerMystery Man <unknown@mandriva.org>2003-03-10 13:52:45 +0000
commitc7681947b501455947618f1694df12fbb3c1d367 (patch)
treef543345cc4a3834b3601cfbb2f9177782544dc79 /tools/i386/netboot/makeImages
parentf9ef1c397c4fcb602a79ac7c0f83d938ff3597f2 (diff)
downloaddrakx-backup-do-not-use-9_1_19mdk.tar
drakx-backup-do-not-use-9_1_19mdk.tar.gz
drakx-backup-do-not-use-9_1_19mdk.tar.bz2
drakx-backup-do-not-use-9_1_19mdk.tar.xz
drakx-backup-do-not-use-9_1_19mdk.zip
This commit was manufactured by cvs2svn to create tag 'V9_1_19mdk'.V9_1_19mdk
Diffstat (limited to 'tools/i386/netboot/makeImages')
-rwxr-xr-xtools/i386/netboot/makeImages31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/i386/netboot/makeImages b/tools/i386/netboot/makeImages
deleted file mode 100755
index 79d45c11e..000000000
--- a/tools/i386/netboot/makeImages
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/sh
-# compile multiple grub stages (1, 2, pxegrub and nbgrub) for all supported network cards
-LOCALPATH=`pwd`
-PATHGRUB="../grub-0.91" # Path were grub is stored
-DRIVERTOCOMPILE=`grep NETBOOT_DRIVERS= ${PATHGRUB}/configure.in | cut -d " " -f 4 | cut -d "." -f 1`
-
-echo "Cleaning old drivers"
-for i in `ls`
-do
- if [ -d $i ]; then
- rm -rf $i
- fi
-
-done
-
-cd ${PATHGRUB}
-
-echo "Compiling new ones"
-for i in ${DRIVERTOCOMPILE}
- do
- make clean
- ./configure --enable-$i --enable-diskless
- make
- mkdir ${LOCALPATH}/$i
- cp stage1/stage1 ${LOCALPATH}/$i/stage1
- cp stage2/stage2 ${LOCALPATH}/$i/stage2
- cp stage2/pxegrub ${LOCALPATH}/$i/pxegrub
- cp stage2/nbgrub ${LOCALPATH}/$i/nbgrub
- echo "compil done for " $i
-done
-cp ${PATHGRUB}/grub/grub ${LOCALPATH} -f