Advertisement
azariah001

Remix OS Grub Config Entry

Feb 15th, 2016
1,855
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.93 KB | None | 0 0
  1. ## Add to /etc/grub.d/40_custom and then run grub-update or equivalent if using non Debian based distro.
  2. ## Replace <UUID> with your partitions UUID
  3. ## Replace Occurances of hdX and msdosX and ahciX with the number based upon your sdXX assignment
  4. ## For instance /dev/sdb2 == 'hd1,msdos2' == ahci1,msdos2
  5.  
  6. menuentry "Remix OS"{
  7.     recordfail
  8.     savedefault
  9.     load_video
  10.     gfxmode $linux_gfx_mode
  11.     insmod gzio
  12.     insmod part_msdos
  13.     insmod ext2
  14.     set root='hd3,msdos1'
  15.  
  16.     if [ x$feature_platform_search_hint = xy ]; then
  17.       search --no-floppy --fs-uuid --set=root --hint-bios=hd3,msdos1 --hint-efi=hd3,msdos1 --hint-baremetal=ahci3,msdos1  <UUID>
  18.     else
  19.       search --no-floppy --fs-uuid --set=root <UUID>
  20.     fi
  21.  
  22.     linux   /android-2016-01-23/kernel root=/dev/ram0 androidboot.hardware=remix_x86_64 androidboot.selinux=permissive quiet SRC=/android-2016-01-23 DATA=CREATE_DATA_IMG=1 DPI=160 UVESA_MODE=1920x1080
  23.     initrd  /android-2016-01-23/initrd.img
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement