Make directories /android and /android/data
Copy initrd.img, kernel, ramdisk.img, and system.img to /android
Create GRUB2 entry using command-line from Remix OS's bootloader config (isolinux.cfg, open in vim)
E.g.:
linux /android/kernel ...
initrd /android/initrd.img
Make sure that SRC= kernel command-line value is set to SRC=/android or else you will not get past "Detecting Android-x86..."
Also, same steps work for Android-x86.
I installed remix on a partition --- Grub2 as always doesn't see android....trying to add at the menu but no chance....
1. Created a folder RemixOs in my home folder and extracted the ISO into it.
$ pwd
/home/sukumar/RemixOs
$ df -h .
Filesystem Size Used Avail Use% Mounted on
/dev/sda5 389G 203G 167G 55% /home
2. Created a folder data under RemixOs
3. Edited 40-custom as below
menuentry 'RemixOS-x86_64' --class android-x86 {
search --file --no-floppy --set=root /home/sukumar/RemixOs/system.img
linux /home/sukumar/RemixOs/kernel root=/dev/sda5 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive DPI=220 quiet DATA=/home/sukumar/RemixOs/data
initrd /home/sukumar/RemixOs/initrd.img
}
4. Ran sudo grub update
I can see the menu entry, but selecting it reboots the PC.
Please suggest what's incorrect