Verachten Bruno
unread,Jul 28, 2014, 11:54:04 AM7/28/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to android-x86
I can't remember where I found the info. This is not my work, just a
copy of something I found on the web:
"The first step is to define custom resolution modes. For example, you
can define 3 modes:
VBoxManage setextradata "Android4.3" "CustomVideoMode1" "320x480x16"
VBoxManage setextradata "Android4.3" "CustomVideoMode2" "640x960x16"
VBoxManage setextradata "Android4.3" "CustomVideoMode3" "480x720x16"
“Android4.3″ is the name of the virtual machine in VirtualBox.
To be able to use these modes, we now have to change the kernel
parameters. Once again, we'll restart the VM, and choose the debug
mode on the boot menu in order to have a command line.
...
To be able to modify the boot partition, we have to remount it with
read/write permission.
mount -o remount, rw /mnt
The ',' is ';' on an azerty keyboard, '/' is '!'
Then, we can edit the /mnt/grub/menu.lst file (vi is your friend).
Duplicate the first menu entry (3 lines) and then edit the kernel
parameters(the first “title” entry and two following lines.)
Add a parameter for each duplicate corresponding to your resolution
choice: UVESA_MODE=480x720 SRC=/android-2.3-RC1
Set what you want for the title.
If you want to be able to select the resolution at boot time, you can also use:
quiet root=/dev/ram0 androidboot_hardware=generic_x86
acpi_sleep=s3_bios,s3_mode vga=ask SRC=/android-2.3-RC1
Save your menu.lst (:wq) and reboot the VM using the VirtualBox menu."