diff options
author | Rod Whitby <rod@whitby.id.au> | 2007-01-23 02:21:17 +0000 |
---|---|---|
committer | Rod Whitby <rod@whitby.id.au> | 2007-01-23 02:21:17 +0000 |
commit | 2d96dd3d8722c5260740717f70c442b4cb445aac (patch) | |
tree | 5e6cb2b464d9b3fdbad03677918b781d5b4018df /conf/machine/ixp4xxbe.conf | |
parent | 79ebe7b06aa1dd508d80ef4bb040a37d6bc314a9 (diff) |
ixp4xx (and related ixp4xx-specific files): Change all usage of ARCH_BYTE_SEX to IXP4XX_MACHINE_ENDIAN (and ensure COMPATIBLE_MACHINE is in effect whereever it is used). Add the nslu2le and nslu2be machines. Change include/ixp4xx.conf to use tune-xscale and tune-thumb. Remove slugos-specific variables that had global OE equivalents. Deprecate ixp4xx.conf and nslu2.conf in favour of endian-specific replacements.
Diffstat (limited to 'conf/machine/ixp4xxbe.conf')
-rw-r--r-- | conf/machine/ixp4xxbe.conf | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/conf/machine/ixp4xxbe.conf b/conf/machine/ixp4xxbe.conf index f303454cbb..cd02d7c821 100644 --- a/conf/machine/ixp4xxbe.conf +++ b/conf/machine/ixp4xxbe.conf @@ -1,15 +1,15 @@ #@TYPE: Machine #@NAME: Generic IXP4XX kernel -#@DESCRIPTION: Machine configuration for a generic ixp4xx board in bigendian mode +#@DESCRIPTION: Machine configuration for a generic ixp4xx board in big-endian mode -MACHINE_FEATURES = "kernel26 usbhost ext2" +IXP4XX_MACHINE_ENDIAN = "be" -ARCH_BYTE_SEX = "be" require conf/machine/include/ixp4xx.conf -PACKAGE_EXTRA_ARCHS = "armv4eb armv4teb armv5eb armv5teb ixp4xxeb" +TARGET_ARCH = "armeb" -EXTRA_IMAGECMD_jffs2 = "--pad --big-endian --eraseblock=0x20000 --faketime -n" +MACHINE_ARCH = "ixp4xxbe" -PREFERRED_PROVIDER_virtual/kernel ?= "ixp4xx-kernel" +PACKAGE_EXTRA_ARCHS = "armv4b armv4tb armv5eb armv5teb" +EXTRA_IMAGECMD_jffs2 += "--big-endian" |