diff options
Diffstat (limited to 'openembedded/conf/machine')
| -rw-r--r-- | openembedded/conf/machine/include/ixp4xx.conf | 10 | ||||
| -rw-r--r-- | openembedded/conf/machine/include/zaurus-clamshell.conf | 7 | ||||
| -rw-r--r-- | openembedded/conf/machine/ipaq-pxa270.conf | 2 | ||||
| -rw-r--r-- | openembedded/conf/machine/jornada7xx.conf | 1 | ||||
| -rw-r--r-- | openembedded/conf/machine/nokia770.conf | 10 | ||||
| -rw-r--r-- | openembedded/conf/machine/qemuarm.conf | 2 |
6 files changed, 16 insertions, 16 deletions
diff --git a/openembedded/conf/machine/include/ixp4xx.conf b/openembedded/conf/machine/include/ixp4xx.conf index 639bf4a74e..93befb92ce 100644 --- a/openembedded/conf/machine/include/ixp4xx.conf +++ b/openembedded/conf/machine/include/ixp4xx.conf | |||
| @@ -62,7 +62,7 @@ IXP4XX_SUFFIX = "${MACHINE_ARCH}" | |||
| 62 | # arm/thumb interworking are enabled in the inputs. | 62 | # arm/thumb interworking are enabled in the inputs. |
| 63 | OVERRIDE_THUMB = "${@['', ':thumb'][bb.data.getVar('ARM_INSTRUCTION_SET', d, 1) == 'thumb']}" | 63 | OVERRIDE_THUMB = "${@['', ':thumb'][bb.data.getVar('ARM_INSTRUCTION_SET', d, 1) == 'thumb']}" |
| 64 | OVERRIDE_INTERWORK = "${@['', ':thumb-interwork'][bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes']}" | 64 | OVERRIDE_INTERWORK = "${@['', ':thumb-interwork'][bb.data.getVar('THUMB_INTERWORK', d, 1) == 'yes']}" |
| 65 | OVERRIDES = "local:${MACHINE}:ixp4xx:${DISTRO}${DISTRO_BASE}:${TARGET_OS}:${TARGET_ARCH}${OVERRIDE_THUMB}${OVERRIDE_INTERWORK}:build-${BUILD_OS}" | 65 | OVERRIDES = "local:${MACHINE}:ixp4xx:${DISTRO}${DISTRO_BASE}:${TARGET_OS}:${TARGET_ARCH}${OVERRIDE_THUMB}${OVERRIDE_INTERWORK}:build-${BUILD_OS}:fail-fast" |
| 66 | 66 | ||
| 67 | # TARGET_CC_ARCH | 67 | # TARGET_CC_ARCH |
| 68 | # TARGET_CC_KERNEL_ARCH | 68 | # TARGET_CC_KERNEL_ARCH |
| @@ -111,7 +111,7 @@ TARGET_PACKAGE_ARCH = "${TARGET_PACKAGE_ARCH_BASE}${BYTE_SEX_CHAR}" | |||
| 111 | # because everything built here is no more specific than that. | 111 | # because everything built here is no more specific than that. |
| 112 | MACHINE_ARCH = "ixp4xx${ARCH_BYTE_SEX}" | 112 | MACHINE_ARCH = "ixp4xx${ARCH_BYTE_SEX}" |
| 113 | 113 | ||
| 114 | # IPKG_ARCHS | 114 | # IPKG_EXTRA_ARCHS |
| 115 | # The full list of package architectures which should run on the system. | 115 | # The full list of package architectures which should run on the system. |
| 116 | # This takes into account both the board level issues and the INPUTS set | 116 | # This takes into account both the board level issues and the INPUTS set |
| 117 | # by the distro. The arm list is derived from the architecture settings | 117 | # by the distro. The arm list is derived from the architecture settings |
| @@ -126,12 +126,12 @@ THUMB_ARCHITECTURES = "thumbe${BYTE_SEX_CHAR} thumbv4t${BYTE_SEX_CHAR} thumbv5t$ | |||
| 126 | # NOTE: this list contains just the things which rootfs_ipk.bbclass does | 126 | # NOTE: this list contains just the things which rootfs_ipk.bbclass does |
| 127 | # not add, rootfs_ipk.bbclass evaluates: | 127 | # not add, rootfs_ipk.bbclass evaluates: |
| 128 | # | 128 | # |
| 129 | # ipkgarchs="all any noarch ${TARGET_ARCH} ${IPKG_ARCHS} ${MACHINE}" | 129 | # ipkgarchs="all any noarch ${TARGET_ARCH} ${IPKG_EXTRA_ARCHS} ${MACHINE}" |
| 130 | # | 130 | # |
| 131 | # This is a priority ordered list - most desireable architecture at the end, | 131 | # This is a priority ordered list - most desireable architecture at the end, |
| 132 | # so put <ARM_INSTRUCTION_SET>_ARCHITECTURES at the end and, if | 132 | # so put <ARM_INSTRUCTION_SET>_ARCHITECTURES at the end and, if |
| 133 | # THUMB_INTERWORK precede this with the other architectures. | 133 | # THUMB_INTERWORK precede this with the other architectures. |
| 134 | IPKG_ARCHS = "ixp4xx ${MACHINE} \ | 134 | IPKG_EXTRA_ARCHS = "ixp4xx ${MACHINE} \ |
| 135 | ${@(lambda arch_thumb, arch_arm, is_arm, interwork: \ | 135 | ${@(lambda arch_thumb, arch_arm, is_arm, interwork: \ |
| 136 | (interwork and (is_arm and arch_thumb or arch_arm) + ' ' or '') \ | 136 | (interwork and (is_arm and arch_thumb or arch_arm) + ' ' or '') \ |
| 137 | + '${TARGET_ARCH} ' + (is_arm and arch_arm or arch_thumb)) \ | 137 | + '${TARGET_ARCH} ' + (is_arm and arch_arm or arch_thumb)) \ |
| @@ -146,7 +146,7 @@ IPKG_ARCHS = "ixp4xx ${MACHINE} \ | |||
| 146 | # the removal of the raw "${MACHINE}" from the end of the list. ${MACHINE} and | 146 | # the removal of the raw "${MACHINE}" from the end of the list. ${MACHINE} and |
| 147 | # ixp4xx are included at the start (lower priority) as the non-byte-sex specific | 147 | # ixp4xx are included at the start (lower priority) as the non-byte-sex specific |
| 148 | # versions. | 148 | # versions. |
| 149 | IPKG_ARCH_LIST = "all any noarch ixp4xx ${MACHINE} ${IPKG_ARCHS}" | 149 | IPKG_ARCH_LIST = "all any noarch ixp4xx ${MACHINE} ${IPKG_EXTRA_ARCHS}" |
| 150 | 150 | ||
| 151 | #------------------------------------------------------------------------------- | 151 | #------------------------------------------------------------------------------- |
| 152 | # Package versions | 152 | # Package versions |
diff --git a/openembedded/conf/machine/include/zaurus-clamshell.conf b/openembedded/conf/machine/include/zaurus-clamshell.conf index e437a64609..4fd1780605 100644 --- a/openembedded/conf/machine/include/zaurus-clamshell.conf +++ b/openembedded/conf/machine/include/zaurus-clamshell.conf | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | TARGET_ARCH = "arm" | 1 | TARGET_ARCH = "arm" |
| 2 | IPKG_ARCHS = "all arm armv4 armv5te" | 2 | IPKG_EXTRA_ARCHS = "armv4 armv5te" |
| 3 | 3 | ||
| 4 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" | 4 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" |
| 5 | 5 | ||
| @@ -11,6 +11,11 @@ IMAGE_CMD_jffs2 = "mkfs.jffs2 --root=${IMAGE_ROOTFS} --faketime \ | |||
| 11 | cat ${STAGING_LIBDIR}/sharp-flash-header/header-c700.bin \ | 11 | cat ${STAGING_LIBDIR}/sharp-flash-header/header-c700.bin \ |
| 12 | ${T}/${IMAGE_NAME}.rootfs.jffs2 > ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.img" | 12 | ${T}/${IMAGE_NAME}.rootfs.jffs2 > ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.img" |
| 13 | 13 | ||
| 14 | # add a summary to the jffs2 file to make it mount a lot faster | ||
| 15 | EXTRA_IMAGECMD_jffs2 += "&& sumtool -i ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.img \ | ||
| 16 | -o ${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs-summary.img \ | ||
| 17 | --eraseblock=0x4000" | ||
| 18 | |||
| 14 | GUI_MACHINE_CLASS = "bigscreen" | 19 | GUI_MACHINE_CLASS = "bigscreen" |
| 15 | GPE_EXTRA_INSTALL += "gaim sylpheed" | 20 | GPE_EXTRA_INSTALL += "gaim sylpheed" |
| 16 | 21 | ||
diff --git a/openembedded/conf/machine/ipaq-pxa270.conf b/openembedded/conf/machine/ipaq-pxa270.conf index 07753ccf64..f5cc893c9c 100644 --- a/openembedded/conf/machine/ipaq-pxa270.conf +++ b/openembedded/conf/machine/ipaq-pxa270.conf | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #@DESCRIPTION: Machine configuration for the iPAQ with a pxa27x CPU devices | 3 | #@DESCRIPTION: Machine configuration for the iPAQ with a pxa27x CPU devices |
| 4 | 4 | ||
| 5 | TARGET_ARCH = "arm" | 5 | TARGET_ARCH = "arm" |
| 6 | IPKG_ARCHS = "all arm armv4 armv5te ipaqpxa hx4700" | 6 | IPKG_EXTRA_ARCHS = "armv4 armv5te ipaqpxa hx4700" |
| 7 | #use this for a hx47xx ipaq | 7 | #use this for a hx47xx ipaq |
| 8 | PREFERRED_PROVIDER_virtual/kernel = "handhelds-pxa-2.6" | 8 | PREFERRED_PROVIDER_virtual/kernel = "handhelds-pxa-2.6" |
| 9 | 9 | ||
diff --git a/openembedded/conf/machine/jornada7xx.conf b/openembedded/conf/machine/jornada7xx.conf index 82eff0b563..e8218138d5 100644 --- a/openembedded/conf/machine/jornada7xx.conf +++ b/openembedded/conf/machine/jornada7xx.conf | |||
| @@ -3,6 +3,5 @@ | |||
| 3 | #@DESCRIPTION: Machine configuration for the SA1100 based HP Jornada 7xx palmtop computer | 3 | #@DESCRIPTION: Machine configuration for the SA1100 based HP Jornada 7xx palmtop computer |
| 4 | 4 | ||
| 5 | TARGET_ARCH = "arm" | 5 | TARGET_ARCH = "arm" |
| 6 | IPKG_ARCHS = "all arm ${MACHINE}" | ||
| 7 | 6 | ||
| 8 | include conf/machine/include/tune-strongarm.conf \ No newline at end of file | 7 | include conf/machine/include/tune-strongarm.conf \ No newline at end of file |
diff --git a/openembedded/conf/machine/nokia770.conf b/openembedded/conf/machine/nokia770.conf index dd2127610a..c50c1a1bc8 100644 --- a/openembedded/conf/machine/nokia770.conf +++ b/openembedded/conf/machine/nokia770.conf | |||
| @@ -2,11 +2,11 @@ | |||
| 2 | #@NAME: Nokia 770 internet tablet | 2 | #@NAME: Nokia 770 internet tablet |
| 3 | #@DESCRIPTION: Machine configuration for the Nokia 770, an omap 1710 based tablet | 3 | #@DESCRIPTION: Machine configuration for the Nokia 770, an omap 1710 based tablet |
| 4 | TARGET_ARCH = "arm" | 4 | TARGET_ARCH = "arm" |
| 5 | IPKG_ARCHS = "all arm armv4 armv5te ${MACHINE}" | 5 | IPKG_EXTRA_ARCHS = "armv4 armv5te" |
| 6 | 6 | ||
| 7 | PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive-omap" | 7 | PREFERRED_PROVIDER_virtual/xserver = "xserver-kdrive-omap" |
| 8 | PREFERRED_PROVIDER_virtual/bootloader = "" | 8 | PREFERRED_PROVIDER_virtual/bootloader = "" |
| 9 | PREFERRED_PROVIDER_virutal/tslib = "tslib-maemo" | 9 | PREFERRED_PROVIDER_tslib = "tslib-maemo" |
| 10 | 10 | ||
| 11 | XSERVER = "xserver-kdrive-omap" | 11 | XSERVER = "xserver-kdrive-omap" |
| 12 | 12 | ||
| @@ -20,15 +20,11 @@ include conf/machine/include/tune-arm926ejs.conf | |||
| 20 | 20 | ||
| 21 | #size of the root partition (yes, it is 123 MB) | 21 | #size of the root partition (yes, it is 123 MB) |
| 22 | ROOT_FLASH_SIZE = "123" | 22 | ROOT_FLASH_SIZE = "123" |
| 23 | #EXTRA_IMAGECMD_jffs2_nokia770 = "--pad --little-endian --eraseblock=0x20000 --no-cleanmarkers" | 23 | EXTRA_IMAGECMD_jffs2_nokia770 = "--pad --little-endian --eraseblock=0x20000" |
| 24 | EXTRA_IMAGECMD_jffs2_nokia770 = "--pad --little-endian --eraseblock=0x20000 -n " | ||
| 25 | 24 | ||
| 26 | # serial console port on devboard rev. B3 | 25 | # serial console port on devboard rev. B3 |
| 27 | #SERIAL_CONSOLE = "115200 tts/0" | ||
| 28 | SERIAL_CONSOLE = "115200 ttyS0" | 26 | SERIAL_CONSOLE = "115200 ttyS0" |
| 29 | 27 | ||
| 30 | |||
| 31 | #build omap1 till nokia releases the patches | ||
| 32 | PREFERRED_PROVIDER_virtual/kernel = "linux-nokia770" | 28 | PREFERRED_PROVIDER_virtual/kernel = "linux-nokia770" |
| 33 | 29 | ||
| 34 | BOOTSTRAP_EXTRA_RDEPENDS += "sysfsutils nokia770-init detect-stylus \ | 30 | BOOTSTRAP_EXTRA_RDEPENDS += "sysfsutils nokia770-init detect-stylus \ |
diff --git a/openembedded/conf/machine/qemuarm.conf b/openembedded/conf/machine/qemuarm.conf index 78b1fe33fc..3341efd1a7 100644 --- a/openembedded/conf/machine/qemuarm.conf +++ b/openembedded/conf/machine/qemuarm.conf | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | #@DESCRIPTION: Machine configuration for running an ARM system under qemu emulation | 3 | #@DESCRIPTION: Machine configuration for running an ARM system under qemu emulation |
| 4 | 4 | ||
| 5 | TARGET_ARCH = "arm" | 5 | TARGET_ARCH = "arm" |
| 6 | IPKG_ARCHS = "all arm armv4 armv5te qemuarm" | 6 | IPKG_EXTRA_ARCHS = "armv4 armv5te" |
| 7 | 7 | ||
| 8 | PCMCIA_MANAGER = "pcmciautils" | 8 | PCMCIA_MANAGER = "pcmciautils" |
| 9 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" | 9 | PREFERRED_PROVIDER_xserver = "xserver-kdrive" |
