Android Emulator Screen Size -


What changes do we need to make in Android source code to get the solution to work 1360x768 in an emulator?

The following changes

  Project Bionic / diff --git A / libc / kernel / arch hand / ASM / memory.hb / libc / kernel / arch begin 100644 --- a / libc / kernel / arch hand / ASM / memory.h +++ b / libc / kernel / arch hand / ASM / memory.h c1137a7..743b6ef -arm / ASM / memory.h index @@ -46,7 +46,7 @@ #define MODULE_START (PHYS_OFFSET) #ifndef CONSISTENT_DMA_SIZE - # CONSISTENT_DMA_SIZE SZ_2M + # define CONSISTENT_DMA_SIZE SZ_8M #endif #ifndef __virt_to_phys project External / kernel headers / diff --git define a / original /asm-arm/memory.hb/original/asm-arm/memory.h Index 91d536c..fcec3b1 100644 --- A / original / ASM hand / memory.h +++ b / original / ASM hand / memory .h @@ 114,7 +114,7 @@ * 2 MB and inclusive of 14 MB. * / #ifndef CONSISTENT_DMA_SIZE - # define CONSISTENT_DMA_SIZE SZ_2M + # CONSISTENT_DMA_SIZE SZ_8M #endif / * diff --git a / root / Linux / Mmzonekhb / original / Linux / Mmzonekh index f45163c..043a812 100,644 --- a defined /original/linux/mmzone.h +++ b / original / linux / mmzone.h @@ -18,7 +187 @@ / * Free memory management - More allocator zoned * / #ifndef CONFIG_FORCE_MAX_ZONEORDER - # define MAX_ORDER 11 + # MAX_ORDER defined 12 #else #define MAX_ORDER CONFIG_FORCE_MAX_ZONEORDER #endif project External / qemu / diff --git a / vl.cb / vl.c index 3242c23..154f44f 100,644 --- a / vl.c +++ B / vl.c @@-181,7 +181,7 @@Inte Main (Int Arzak, four ** argv) #defined LOG_IOPORT (...) while {} (0) #endif - # define DEFAULT_RAM_SIZE 128 + # DEFAULT_RAM_SIZE 512 / * Define the maximum number of USB devices that can be specified on the command line. * / #define MAX_USB_CMDLINE 8  

Apparently you have a large (1280x720) screen, But this is not enough for an even larger (1360x768) screen. So, allocate more memory?


Comments