diff options
author | Olivier Blin <oblin@mandriva.org> | 2004-08-25 12:52:45 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.org> | 2004-08-25 12:52:45 +0000 |
commit | 8eb0ceaae6c279eab9a1363b1684f0416e984239 (patch) | |
tree | 82fbab2abbe1736a10246af6ab1e5ef72f221944 | |
parent | 586afb4bb29d6f3197f3078854b544d842510542 (diff) | |
download | drakx-8eb0ceaae6c279eab9a1363b1684f0416e984239.tar drakx-8eb0ceaae6c279eab9a1363b1684f0416e984239.tar.gz drakx-8eb0ceaae6c279eab9a1363b1684f0416e984239.tar.bz2 drakx-8eb0ceaae6c279eab9a1363b1684f0416e984239.tar.xz drakx-8eb0ceaae6c279eab9a1363b1684f0416e984239.zip |
use grub-0.95
-rwxr-xr-x | tools/i386/netboot/makeImages | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/i386/netboot/makeImages b/tools/i386/netboot/makeImages index 3920547d7..39d13df73 100755 --- a/tools/i386/netboot/makeImages +++ b/tools/i386/netboot/makeImages @@ -1,8 +1,8 @@ #!/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` +PATHGRUB="../grub-0.95" # Path were grub is stored +DRIVERTOCOMPILE=`grep NETBOOT_DRIVERS= ${PATHGRUB}/configure.ac | cut -d " " -f 4 | cut -d "." -f 1` echo "Cleaning old drivers" for i in `ls` @@ -26,6 +26,6 @@ for i in ${DRIVERTOCOMPILE} cp stage2/stage2 ${LOCALPATH}/$i/stage2 cp stage2/pxegrub ${LOCALPATH}/$i/pxegrub cp stage2/nbgrub ${LOCALPATH}/$i/nbgrub - echo "compil done for " $i + echo "compil done for" $i done cp ${PATHGRUB}/grub/grub ${LOCALPATH} -f |