diff options
author | John Bowler <jbowler@nslu2-linux.org> | 2006-01-12 10:21:01 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-01-12 10:21:01 +0000 |
commit | 2b8d6d7c246759913efb718d5417910f1336ed02 (patch) | |
tree | 3f973d117dfa3747a5531d4eb1bd06cb73a66c88 /conf/machine/include | |
parent | f9f38d4d7803a93cfa5f9b40007cd887c7bd8ac0 (diff) |
ixp4xx: correct IPKG_ARCHS to include ${MACHINE}[bl] in ixp4xx.conf
- the kernel packages now use ${MACHINE}[bl] according to the system
byte sex, therefore this must be included in the IPKG_ARCH list or
the image build will fail.
Diffstat (limited to 'conf/machine/include')
-rw-r--r-- | conf/machine/include/ixp4xx.conf | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/conf/machine/include/ixp4xx.conf b/conf/machine/include/ixp4xx.conf index 5005f581ff..3c5077056e 100644 --- a/conf/machine/include/ixp4xx.conf +++ b/conf/machine/include/ixp4xx.conf @@ -134,7 +134,8 @@ IPKG_ARCHS = "${@(lambda arch_thumb, arch_arm, is_arm, interwork: \ (bb.data.getVar('THUMB_ARCHITECTURES', d, 1), \ bb.data.getVar('ARM_ARCHITECTURES', d, 1), \ bb.data.getVar('ARM_INSTRUCTION_SET', d, 1) != 'thumb', \ - bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes')} ${MACHINE_ARCH}" + bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes')} \ + ${MACHINE_ARCH} ${MACHINE}${BYTE_SEX_CHAR}" #------------------------------------------------------------------------------- # Package versions |