4 # Run GRUB script in a Qemu instance
5 # Copyright (C) 2010 Free Software Foundation, Inc.
7 # GRUB is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
12 # GRUB is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with GRUB. If not, see <http://www.gnu.org/licenses/>.
20 disks=`echo ls | @builddir@/grub-shell`
21 disks=`echo "$disks"| grep -av '^Network protocols:$'| grep -av '^tftp http $'`
22 other=`echo insmod regexp\; echo \* | @builddir@/grub-shell`
24 if echo "$d" |grep ',' >/dev/null; then
25 if echo "$other" | grep -F -- "$d" >/dev/null; then
26 echo "$d should not occur in * expansion" >&2
30 if ! echo "$other" | grep -F -- "$d" >/dev/null; then
31 echo "$d missing from * expansion" >&2
37 other=`echo insmod regexp\; echo '(*)' | @builddir@/grub-shell`
39 if ! echo "$other" | grep -F -- "$d" >/dev/null; then
40 echo "$d missing from (*) expansion" >&2