回复:回复:回复:[acrn-users] Intel i5-6500T skylake not supported ?
"徐滕
I remake acrn with RELEASE=0, cp acrn.bin to /boot/acrn/ but still failed . I reinstalled the grub-2.05 uefi to /boot/efi/EFI/BOOT/ , and modifyed the grub.cfg in this dir my grub.cfg : ``` ### BEGIN /usr/local/etc/grub.d/10_linux ### set default=1 set timeout=5 insmod all_video insmod efi_gop insmod efi_uga insmod ieee1275_fb insmod vbe insmod vga insmod video_bochs insmod video_cirrus set root='hd1,gpt2' menuentry 'GNU/Linux' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-8531accc-08cd-46d9-9010-5eced4c84ac1' { recordfail insmod gzio insmod part_gpt insmod ext2 echo 'Loading Linux 5.4.43-PKT-200203T060100Z ...' linux /boot/vmlinuz-5.4.43-PKT-200203T060100Z root=UUID=8531accc-08cd-46d9-9010-5eced4c84ac1 ro echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-5.4.43-PKT-200203T060100Z } menuentry "ACRN Multiboot Ubuntu Service VM" --id ubuntu-service-vm { insmod gzio insmod part_gpt insmod ext2 echo 'loading ACRN...' multiboot2 /boot/acrn/acrn.bin root=PARTUUID="8531accc-08cd-46d9-9010-5eced4c84ac1" module2 /boot/bzImage Linux_bzImage } menuentry 'GNU/Linux' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-8531accc-08cd-46d9-9010-5eced4c84ac1' { set gfxpayload=keep insmod gzio insmod part_gpt insmod ext2 #if [ x$feature_platform_search_hint = xy ]; then # search --no-floppy --fs-uuid --set=root 8531accc-08cd-46d9-9010-5eced4c84ac1 #else # search --no-floppy --fs-uuid --set=root 8531accc-08cd-46d9-9010-5eced4c84ac1 #fi echo 'Loading Linux 5.3.0-28-generic ...' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=8531accc-08cd-46d9-9010-5eced4c84ac1 ro echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-5.3.0-28-generic } submenu 'Advanced options for GNU/Linux' $menuentry_id_option 'gnulinux-advanced-8531accc-08cd-46d9-9010-5eced4c84ac1' { menuentry 'GNU/Linux, with Linux 5.3.0-28-generic' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.3.0-28-generic-advanced-8531accc-08cd-46d9-9010-5eced4c84ac1' { set gfxpayload=keep insmod gzio insmod part_gpt insmod ext2 set root='hd1,gpt2' echo 'Loading Linux 5.3.0-28-generic ...' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=8531accc-08cd-46d9-9010-5eced4c84ac1 ro echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-5.3.0-28-generic } menuentry 'GNU/Linux, with Linux 5.3.0-28-generic (recovery mode)' --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-5.3.0-28-generic-recovery-8531accc-08cd-46d9-9010-5eced4c84ac1' { set gfxpayload=keep insmod gzio insmod part_gpt insmod ext2 echo 'Loading Linux 5.3.0-28-generic ...' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=8531accc-08cd-46d9-9010-5eced4c84ac1 ro single echo 'Loading initial ramdisk ...' initrd /boot/initrd.img-5.3.0-28-generic } } ### END /usr/local/etc/grub.d/10_linux ### ### BEGIN /usr/local/etc/grub.d/20_linux_xen ### ### END /usr/local/etc/grub.d/20_linux_xen ### ### BEGIN /usr/local/etc/grub.d/30_os-prober ### menuentry 'Ubuntu 18.04.4 LTS (18.04) (on /dev/sda5)' --class ubuntu --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-10489275-e98e-44df-821c-b006bef6b357' { insmod part_msdos insmod ext2 set root='hd0,msdos5' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=10489275-e98e-44df-821c-b006bef6b357 ro quiet splash $vt_handoff initrd /boot/initrd.img-5.3.0-28-generic } submenu 'Advanced options for Ubuntu 18.04.4 LTS (18.04) (on /dev/sda5)' $menuentry_id_option 'osprober-gnulinux-advanced-10489275-e98e-44df-821c-b006bef6b357' { menuentry 'Ubuntu (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.3.0-28-generic--10489275-e98e-44df-821c-b006bef6b357' { insmod part_msdos insmod ext2 set root='hd0,msdos5' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=10489275-e98e-44df-821c-b006bef6b357 ro quiet splash $vt_handoff initrd /boot/initrd.img-5.3.0-28-generic } menuentry 'Ubuntu, with Linux 5.3.0-28-generic (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.3.0-28-generic--10489275-e98e-44df-821c-b006bef6b357' { insmod part_msdos insmod ext2 set root='hd0,msdos5' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=10489275-e98e-44df-821c-b006bef6b357 ro quiet splash $vt_handoff initrd /boot/initrd.img-5.3.0-28-generic } menuentry 'Ubuntu, with Linux 5.3.0-28-generic (recovery mode) (on /dev/sda5)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-5.3.0-28-generic--10489275-e98e-44df-821c-b006bef6b357' { insmod part_msdos insmod ext2 set root='hd0,msdos5' linux /boot/vmlinuz-5.3.0-28-generic root=UUID=10489275-e98e-44df-821c-b006bef6b357 ro recovery nomodeset initrd /boot/initrd.img-5.3.0-28-generic } } ``` when boot into menuentry "ACRN Multiboot Ubuntu" the grub got stuck
|
|
Liu, Fuzhong
Hi Xu Teng Can you get console log for native boot? Need hv console log to check what happened with following menu.
menuentry "ACRN Multiboot Ubuntu Service VM" --id ubuntu-service-vm { If you also can’t get console log for native boot. Could you please share your acrn.efi and bzImage? Let us narrow down this issue.
BTW: Suppose VMX and VT-D are enabled in your BIOS already.
BR. Fuzhong From: acrn-users@... <acrn-users@...>
On Behalf Of "??
Sent: Thursday, August 20, 2020 3:04 PM To: acrn-users <acrn-users@...> Subject: 回复:回复:回复:[acrn-users] Intel i5-6500T skylake not supported ?
I remake acrn with RELEASE=0, cp acrn.bin to /boot/acrn/ but still failed .
I reinstalled the grub-2.05 uefi to /boot/efi/EFI/BOOT/ , and modifyed the grub.cfg in this dir my grub.cfg : ``` ### BEGIN /usr/local/etc/grub.d/10_linux ### ```
when boot into menuentry "ACRN Multiboot Ubuntu" the grub got stuck
|
|