diff options
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2009-12-01 21:28:42 -0300 |
---|---|---|
committer | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2009-12-01 21:28:42 -0300 |
commit | 9350558f60422687eec8473e116d07faf94fb966 (patch) | |
tree | 1296d13f3a8411567e2aa61d84e7e13859a41533 /archiso/gen_grubscan | |
parent | 4071a39fd10c7e8ba95961682b1d993c5c050a0e (diff) |
Removed unused gen_grubscan script and grub reference in mkarchiso
Signed-off-by: Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar>
Diffstat (limited to 'archiso/gen_grubscan')
-rwxr-xr-x | archiso/gen_grubscan | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/archiso/gen_grubscan b/archiso/gen_grubscan deleted file mode 100755 index a2ac4df..0000000 --- a/archiso/gen_grubscan +++ /dev/null @@ -1,30 +0,0 @@ -#!/bin/bash - -count=0 -fallback="" -for hd in $(seq 0 3); do - for part in $(seq 0 17); do - count=$(($count + 1)) - fallback="${fallback} ${count}" - done -done - -echo "timeout 0" -echo "default 0" -echo "fallback ${fallback}" -echo "color light-blue/blue black/light-grey" -echo "splashimage=/boot/splash.xpm.gz" -echo "" - -for hd in $(seq 0 3); do - for part in $(seq 0 17); do - echo "title Testing disk ${hd}, partition ${part}" - echo "set scan_dev=(hd${hd},${part})" - echo "fexists \$(scan_dev)/boot/grub/menu.lst" - echo "configfile \$(scan_dev)/boot/grub/menu.lst" - echo "" - done -done - -echo "title Failed" -echo "pause Scanning for installed grub failed" |