diff options
author | Martyn Welch <martyn.welch@ge.com> | 2010-03-17 06:26:53 +0000 |
---|---|---|
committer | Tom Rini <tom_rini@mentor.com> | 2010-03-17 09:35:59 -0700 |
commit | 86ab2dc6608c2f4342f3a6dcad4bc175c19bda5a (patch) | |
tree | 1fb391b11a4c0adcac0e8ede0b396c22008299f9 /conf/machine | |
parent | 1b8480c8b513c35284e51c2d04989c1bd3c7993e (diff) |
Add Freescale mpc8641_hpcn demo board
A demo board from Freescale, based on the MPC8641D Freescale SOC.
Acked-by: Tom Rini <tom_rini@mentor.com>
Signed-off-by: Tom Rini <tom_rini@mentor.com>
Diffstat (limited to 'conf/machine')
-rw-r--r-- | conf/machine/include/tune-ppce600.inc | 4 | ||||
-rw-r--r-- | conf/machine/mpc8641-hpcn.conf | 26 |
2 files changed, 30 insertions, 0 deletions
diff --git a/conf/machine/include/tune-ppce600.inc b/conf/machine/include/tune-ppce600.inc new file mode 100644 index 0000000000..77a7cb86b8 --- /dev/null +++ b/conf/machine/include/tune-ppce600.inc @@ -0,0 +1,4 @@ +TARGET_CC_ARCH = "-mcpu=7450" +BASE_PACKAGE_ARCH = "ppce600" +FEED_ARCH = "ppce600" +PACKAGE_EXTRA_ARCHS += "ppce600" diff --git a/conf/machine/mpc8641-hpcn.conf b/conf/machine/mpc8641-hpcn.conf new file mode 100644 index 0000000000..ef75be3112 --- /dev/null +++ b/conf/machine/mpc8641-hpcn.conf @@ -0,0 +1,26 @@ +#@TYPE: Machine +#@Name: MPC8641-hpcn +#@DESCRIPTION: Machine configuration for the freescale mpc8641_hpcn development board + +TARGET_ARCH = "powerpc" + +PREFERRED_PROVIDER_virtual/kernel ?= "linux" + +MACHINE_FEATURES = "kernel26 usbhost pci ext2 vfat nfs uboot" + +KERNEL_IMAGETYPE = "uImage" +UBOOT_ENTRYPOINT = "0" + +UBOOT_MACHINE = "MPC8641HPCN_config" + +# Need to create jffs2 images with the correct endianess +EXTRA_IMAGECMD_jffs2 = " --big-endian -e 0x10000" + +#don't try to access tty1 +USE_VT = "0" + +#setup serial console on Com1 +SERIAL_CONSOLE = "-L 115200 ttyS0" + +# Tune for e600 core +require conf/machine/include/tune-ppce600.inc |