2aced2dc94
Added an instruction to copy init.vbox_x86.rc to the output's root. This is required to properly setup networking and other stuff inside the emulator. Change-Id: I84b11b048120a59109aa95d4f18d496a3c874911
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
#
|
|
# IA target for VitualBox
|
|
#
|
|
|
|
TARGET_ARCH=x86
|
|
DISABLE_DEXPREOPT := true
|
|
TARGET_COMPRESS_MODULE_SYMBOLS := false
|
|
TARGET_NO_RECOVERY := true
|
|
TARGET_HARDWARE_3D := false
|
|
BOARD_USES_GENERIC_AUDIO := true
|
|
USE_CAMERA_STUB := true
|
|
TARGET_PROVIDES_INIT_RC := true
|
|
USE_CUSTOM_RUNTIME_HEAP_MAX := "32M"
|
|
TARGET_CPU_ABI := x86
|
|
TARGET_USERIMAGES_USE_EXT4 := true
|
|
TARGET_BOOTIMAGE_USE_EXT2 := true
|
|
|
|
# For VirtualBox and likely other emulators
|
|
BOARD_INSTALLER_CMDLINE := init=/init console=ttyS0 console=tty0 vga=788 verbose
|
|
BOARD_KERNEL_CMDLINE := init=/init qemu=1 console=ttyS0 console=tty0 vga=788 verbose androidboot.hardware=vbox_x86 androidboot.console=ttyS0 android.qemud=ttyS1
|
|
TARGET_USE_DISKINSTALLER := true
|
|
|
|
TARGET_DISK_LAYOUT_CONFIG := build/target/board/vbox_x86/disk_layout.conf
|
|
BOARD_BOOTIMAGE_MAX_SIZE := 8388608
|
|
BOARD_SYSLOADER_MAX_SIZE := 7340032
|
|
BOARD_FLASH_BLOCK_SIZE := 512
|
|
# 50M
|
|
BOARD_USERDATAIMAGE_PARTITION_SIZE := 52428800
|
|
# 500M
|
|
BOARD_INSTALLERIMAGE_PARTITION_SIZE := 524288000
|
|
TARGET_USERIMAGES_SPARSE_EXT_DISABLED := true
|
|
# Reserve 265M for the system partition
|
|
BOARD_SYSTEMIMAGE_PARTITION_SIZE := 268435456
|
|
|
|
|
|
# The eth0 device should be started with dhcp on boot.
|
|
# Useful for emulators that don't provide a wifi connection.
|
|
NET_ETH0_STARTONBOOT := true
|