This is the output of boot-repair:
Bootsektor wurde erfolgreich repariert.
Bitte auf ein Papier die folgende Adresse notieren: https://paste.ubuntu.com/p/h58hKSrJ9y/
Falls Sie ein Startproblem haben, geben Sie hier diese Adresse an: boot.repair@gmail.com oder in Ihrem bevorzugten Hilfeforum.
Sie können Ihren Rechner nun neu starten.
Please do not forget to make your UEFI firmware boot on the Ubuntu 21.04 entry (nvme0n1p1/EFI/ubuntu/shimx64.efi file) !
Assumptions:
- I installed new Ubuntu 21.04. on /dev/nvme1
- grub2 is installed on /dev/nvme0
Expected: Old Ubuntu 20.04. is bootable from dev/nvme0
Actual: Only new installation of Ubuntu 21.04. boots in grub2
This is my /etc/grub.d/40_custom:
menuentry "ubuntu 20.04" {
     insmod part_gpt
     insmod chain
     set root='(hd0,gpt2)'
     chainloader /EFI/ubuntu/shimx64.efi
}
How to add Ubuntu 20.04. to grub menu?
