diff options
author | Tim 'timtim' Ellis <tim.ellis@foonas.org> | 2009-03-22 20:28:07 +0000 |
---|---|---|
committer | Tim 'timtim' Ellis <tim.ellis@foonas.org> | 2009-03-22 20:28:07 +0000 |
commit | 234d560853d844d7e73d0c2500e481b1612b1644 (patch) | |
tree | 6a411cda14b9bd7e009cb616c5adc98094702f65 /conf | |
parent | cd6ff2efac07359642127a3dc51a14c45da7f1bb (diff) |
sheevaplug: Add machine config for Sheevaplug and a generic include for Kirkwood platforms
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/include/kirkwood.inc | 24 | ||||
-rw-r--r-- | conf/machine/sheevaplug.conf | 6 |
2 files changed, 30 insertions, 0 deletions
diff --git a/conf/machine/include/kirkwood.inc b/conf/machine/include/kirkwood.inc new file mode 100644 index 0000000000..6ee50c112d --- /dev/null +++ b/conf/machine/include/kirkwood.inc @@ -0,0 +1,24 @@ +#@TYPE: Machine +#@DESCRIPTION: Machine configuration for various different Marvell Kirkwood based devices + +TARGET_ARCH = "arm" + +MACHINE_FEATURES = "kernel26 usbhost ext2 vfat" +MACHINE_TASK_PROVIDER = "task-base" + +USE_DEVFS = "0" + +PREFERRED_PROVIDER_virtual/bootloader = "" +PREFERRED_PROVIDER_virtual/kernel = "linux-kirkwood" +PREFERRED_VERSION_linux-kirkwood = "2.6.29-rc7+git" + +IMAGE_DEVICE_TABLES = "files/device_table-slugos.txt" +IMAGE_FSTYPES = "tar.gz" +SERIAL_CONSOLE = "ttyS0 115200" + +# Currently all the orion devices we support use uImage +KERNEL_IMAGETYPE = "uImage" +UBOOT_ENTRYPOINT = "0x00008000" +UBOOT_LOADADDRESS = "0x00008000" + +require conf/machine/include/tune-arm926ejs.inc diff --git a/conf/machine/sheevaplug.conf b/conf/machine/sheevaplug.conf new file mode 100644 index 0000000000..ee9ba6cb88 --- /dev/null +++ b/conf/machine/sheevaplug.conf @@ -0,0 +1,6 @@ +#@NAME: ARM based Marvell Sheevaplug + +MACHINE_EXTRA_RDEPENDS = "u-boot-utils" +MACHINE_EXTRA_RRECOMMENDS = "kernel-modules" + +require conf/machine/include/kirkwood.inc |