### BEGIN /etc/grub.d/10_linux ### menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-71805fce-94a3-40ed-96e3-ebd9725011be' { savedefault load_video set gfxpayload=keep insmod gzio insmod part_msdos insmod ext2 set root='hd0,msdos1' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 fe1cdfcd-d3f0-4f27-a9ea-181d42c210f3 else search --no-floppy --fs-uuid --set=root fe1cdfcd-d3f0-4f27-a9ea-181d42c210f3 fi echo 'Linux 4.4.13-1-MANJARO x64 wird geladen …' linux /vmlinuz-4.4-x86_64 root=/dev/mapper/vgubuntu-mroot rw cryptdevice=/dev/sda2:vgubuntu resume=/dev/vgubuntu/swap echo 'Initiale Ramdisk wird geladen …' initrd /intel-ucode.img /initramfs-4.4-x86_64.img } [...] ### END /etc/grub.d/10_linux ### ### BEGIN /etc/grub.d/30_os-prober ### menuentry 'Ubuntu 14.04.4 LTS (14.04) (auf /dev/mapper/vgubuntu-root)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-9347e663-16e2-4d3e-9419-4240b7e74d1b' { savedefault insmod part_msdos insmod ext2 set root='hd0,msdos1' if [ x$feature_platform_search_hint = xy ]; then search --no-floppy --fs-uuid --set=root --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 fe1cdfcd-d3f0-4f27-a9ea-181d42c210f3 else search --no-floppy --fs-uuid --set=root fe1cdfcd-d3f0-4f27-a9ea-181d42c210f3 fi linux /vmlinuz-4.4-x86_64 root=/dev/mapper/vgubuntu-mroot rw cryptdevice=/dev/sda2:vgubuntu resume=/dev/vgubuntu/swap initrd /intel-ucode.img /boot/initramfs-4.4-x86_64.img } [...] ### END /etc/grub.d/30_os-prober ###