index : archiso32 | |
Archlinux32 iso tools | gitolite user |
summaryrefslogtreecommitdiff |
author | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-09-06 20:45:45 -0500 |
---|---|---|
committer | Aaron Griffin <aaronmgriffin@gmail.com> | 2008-09-06 20:45:45 -0500 |
commit | 98318ea039c39bff953c6b83010e48791ee6d286 (patch) | |
tree | b817b6594cea311c3fdfe31dabbe33d80e56a5c5 /gen_grubscan | |
parent | 8966351b12bbcf2f8fffbd8c3a4b00e7529349b8 (diff) |
-rw-r--r-- | gen_grubscan | 30 |
diff --git a/gen_grubscan b/gen_grubscan deleted file mode 100644 index a2ac4df..0000000 --- a/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" |