My Grub.cfg File


My grub.cfg file

Return to How To Install Debian On A USB Key For A MacBookPro

Contents of my /dev/sdb2//efi/grub/grub.cfg file:

menuentry "MacOSX" {
  # Search the root device for Mac OS X's loader.
  search --set /usr/standalone/i386/boot.efi
  # Load the loader.
  chainloader /usr/standalone/i386/boot.efi
}

menuentry "Linux" {
        root (hd0,1)
        fakebios
        linux /vmlinuz root=/dev/sdb1 video=efifb
        initrd /initrd.img
}