1
#@TYPE: Machine
2
#@NAME: Nimble NP51R / Linkgear SERIES 100
3
#@DESCRIPTION: Machine configuration for the SH4 based Nimble NP51R / Linkgear Series 100
4
5
TARGET_ARCH = "sh4"
6
7
PREFERRED_PROVIDER_virtual/kernel = "linux-titan-sh4"
8
PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}depmod:module-init-tools-cross"
9
10
# SH4 specific settings
11
require conf/machine/include/tune-sh4.inc
12
13
# Serial console settings for sysvinit
14
SERIAL_CONSOLE = "38400 ttySC1"
15
16
# There's no screen on the titan boards
17
USE_VT = "0"
18
19
# We are using UDEV, there is no devfs in 2.6 kernels
20
USE_DEVFS = "0"
21
22
# The NP51R has 64MB flash, 2nd partition (/) is 63984k in size.
23
# The LinkGear Series 100 has 128MB of flash (not tested)
24
IMAGE_FSTYPE ?= "ext2.gz"
25
IMAGE_ROOTFS_SIZE_ext2 ?= "63984"
26
27
# Things to include in the fs image
28
MACHINE_FEATURES = "kernel26 pci ext2 usbhost"
29
# The kernel and lilo-sh need to installed to boot from flash
30
MACHINE_EXTRA_RDEPENDS = "kernel lilo-sh"
31
32
# Add the SCI (serial) and SM (flash) devices to the minimal /dev
33
IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt \
34
                       files/device_table_add-sci.txt \
35
                       files/device_table_add-sm.txt"