blob: fb8b521a3c84af864de5340ae2348054927f9ca1 (
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
#@TYPE: Machine
#@Name: Psion teklogix netbookpro Platform
#@DESCRIPTION: Machine configuration for Psion teklogix netbookpro Platformm
INHERIT += "linux_modules"
TARGET_ARCH = "arm"
IPKG_EXTRA_ARCHS = "armv5te"
PREFERRED_PROVIDER_virtual/kernel = "${MACHINE}-kernel"
#don't try to access tty1
USE_VT = "0"
#use the epson xserver
XSERVER = "xserver-kdrive-epson"
#ship in rootfs:
NBP_MODULES = " apm \
pcmcia-core \
ipv6 "
BOOTSTRAP_EXTRA_RRECOMMENDS += " ${@linux_module_packages('${NBP_MODULES}', d)}"
BOOTSTRAP_EXTRA_RDEPENDS_append = " udev module-init-tools"
GPE_EXTRA_INSTALL += "gpe-mini-browser"
# used by sysvinit_2
SERIAL_CONSOLE = "115200 ttySA0 vt100"
# used by some images
ROOT_FLASH_SIZE = "32"
#extra jffs2 tweaks
EXTRA_IMAGECMD_jffs2 = "-e 16384 -p 512 -n --little-endian"
udevdir = "/dev"
GUI_MACHINE_CLASS = "bigscreen"
#The initrd needs /initrd present to be able to do pivot_root
ROOTFS_POSTPROCESS_COMMAND += " mkdir -p ${IMAGE_ROOTFS}/initrd; "
include conf/machine/include/tune-xscale.conf
|