meta-digi-arm: Move images types to machine configuration.

This allows to override it easily.

Signed-off-by: Alex Gonzalez <alex.gonzalez@digi.com>
This commit is contained in:
Alex Gonzalez 2014-11-27 14:25:45 +01:00
parent 23a677a355
commit 19716dcde7
3 changed files with 5 additions and 2 deletions

View File

@ -19,3 +19,5 @@ BOOT_SCRIPTS = "boot-sd.scr:boot.scr"
# system: 512 MiB
#
BOARD_BOOTIMAGE_PARTITION_SIZE ?= "67108864"
IMAGE_FSTYPES ?= "boot.vfat ext4 sdcard tar.bz2"

View File

@ -14,3 +14,5 @@ BOOT_SCRIPTS = "boot-sd.scr:boot.scr"
# Boot partition size for FAT image generation, 64MiB
BOARD_BOOTIMAGE_PARTITION_SIZE ?= "67108864"
IMAGE_FSTYPES ?= "boot.vfat ext4 sdcard tar.bz2"

View File

@ -69,11 +69,10 @@ PREFERRED_PROVIDER_virtual/libgl_mx6sl ?= "mesa"
EXTRA_IMAGEDEPENDS = "u-boot"
# Flash image types
IMAGE_FSTYPES ?= "jffs2.sum tar.bz2 ubifs"
IMAGE_FSTYPES ??= "jffs2.sum tar.bz2 ubifs"
# MX6 does not have flash memory so build sdcard images
SDCARD_ROOTFS_mx6 ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext4"
IMAGE_FSTYPES_mx6 ?= "boot.vfat ext4 sdcard tar.bz2"
KERNEL_IMAGETYPE = "uImage"