2009-09-14 Colin Watson <cjwatson@ubuntu.com>
* util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober output.
This commit is contained in:
parent
5653217923
commit
d52109a7a2
2 changed files with 13 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2009-09-14 Colin Watson <cjwatson@ubuntu.com>
|
||||||
|
|
||||||
|
* util/grub.d/30_os-prober.in: Cope with Windows 7 in os-prober
|
||||||
|
output.
|
||||||
|
|
||||||
2009-09-13 Robert Millan <rmh.grub@aybabtu.com>
|
2009-09-13 Robert Millan <rmh.grub@aybabtu.com>
|
||||||
|
|
||||||
* configure.ac: Remove --enable-grub-pe2elf. Only build
|
* configure.ac: Remove --enable-grub-pe2elf. Only build
|
||||||
|
|
|
@ -57,11 +57,16 @@ menuentry "${LONGNAME} (on ${DEVICE})" {
|
||||||
EOF
|
EOF
|
||||||
prepare_grub_to_access_device ${DEVICE} | sed -e "s/^/\t/"
|
prepare_grub_to_access_device ${DEVICE} | sed -e "s/^/\t/"
|
||||||
|
|
||||||
if [ "${LONGNAME}" != "Windows Vista (loader)" ] ; then
|
case ${LONGNAME} in
|
||||||
cat << EOF
|
Windows\ Vista*|Windows\ 7*)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
cat << EOF
|
||||||
drivemap -s (hd0) \${root}
|
drivemap -s (hd0) \${root}
|
||||||
EOF
|
EOF
|
||||||
fi
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
chainloader +1
|
chainloader +1
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue