blob: 96acbe25dd37efbce89107482c1e22c395bfeaea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#@TYPE: Machine
#@Name: Ronetix PM9263 CPU Module
#@DESCRIPTION: Machine.configuration for the Ronetix evaluation board with PM9263 CPU module
#@MAINTAINER: Marco Cavallini <m.cavallini@koansoftware.com>
TARGET_ARCH = "arm"
PREFERRED_PROVIDER_virtual/kernel = "linux"
PREFERRED_PROVIDER_xserver = "xserver-kdrive"
KERNEL_IMAGETYPE = "uImage"
#don't try to access tty1
USE_VT = "0"
MACHINE_FEATURES = "kernel26 ext2 usbhost usbgadget screen touchscreen"
# used by sysvinit_2
SERIAL_CONSOLE = "115200 ttyS0"
IMAGE_FSTYPES ?= "jffs2"
EXTRA_IMAGECMD_jffs2 = "--pad --little-endian --eraseblock=0x20000 -n"
require conf/machine/include/tune-arm926ejs.inc
|