diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2006-09-11 08:20:15 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2006-09-11 08:20:15 +0000 |
commit | ed3e7b28ce6f8a1dfbec11e6047648f5b1aa22a4 (patch) | |
tree | 3daa1a84510eb2ca621785aeee015be174b433ad /conf | |
parent | ebc8713c6fbefba94680d0663b52fae92d9554b4 (diff) |
machine titan: Add machine file for the sh4 based TITAN boards (Nimble NP51R
and jjplus LinkGear Series 100).
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/titan.conf | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/conf/machine/titan.conf b/conf/machine/titan.conf new file mode 100644 index 0000000000..99f8b2a18b --- /dev/null +++ b/conf/machine/titan.conf @@ -0,0 +1,33 @@ +#@TYPE: Machine +#@NAME: Nimble NP51R / Linkgear SERIES 100 +#@DESCRIPTION: Machine configuration for the SH4 based Nimble NP51R / Linkgear Series 100 + +TARGET_ARCH = "sh4" + +PREFERRED_PROVIDER_virtual/kernel = "linux-titan-sh4" +PREFERRED_PROVIDERS += "virtual/${TARGET_PREFIX}depmod:module-init-tools-cross" + +# SH4 specific settings +require conf/machine/include/tune-sh4.conf + +# Serial console settings for sysvinit +SERIAL_CONSOLE = "38400 ttySC1" + +# There's no screen on the titan boards +USE_VT = "0" + +# We are using UDEV, there is no devfs in 2.6 kernels +USE_DEVFS = "0" + +# The NP51R has 64MB flash, 2nd partition (/) is 63984k in size. +# The LinkGear Series 100 has 128MB of flash (not tested) +IMAGE_FSTYPE ?= "ext2.gz" +IMAGE_ROOTFS_SIZE_ext2 ?= "63984" + +# Extra items to include in the fs image +BOOTSTRAP_EXTRA_RDEPENDS += "kernel pciutils udev kernel-modules lilo-sh" + +# Add the SCI (serial) and SM (flash) devices to the minimal /dev +IMAGE_DEVICE_TABLES = "files/device_table-minimal.txt \ + files/device_table_add-sci.txt \ + files/device_table_add-sm.txt" |