Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/gen_grubscan
diff options
context:
space:
mode:
authorAaron Griffin <aaronmgriffin@gmail.com>2008-09-06 20:45:45 -0500
committerAaron Griffin <aaronmgriffin@gmail.com>2008-09-06 20:45:45 -0500
commit98318ea039c39bff953c6b83010e48791ee6d286 (patch)
treeb817b6594cea311c3fdfe31dabbe33d80e56a5c5 /gen_grubscan
parent8966351b12bbcf2f8fffbd8c3a4b00e7529349b8 (diff)
Rename "default-config" to "overlay"
I like difficulty and then name was annoying me Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'gen_grubscan')
-rw-r--r--gen_grubscan30
1 files changed, 0 insertions, 30 deletions
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"