diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-10-10 10:53:11 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2016-10-18 16:26:14 -0200 |
commit | 85a5ee8ae14720c0e6ebdade1de9b29451d9e68b (patch) | |
tree | d775007691d82a33d550e3fcdb665fc934f47d15 /conf | |
parent | 05540d887c1c7e573a7803ca1e1720ce64325a1f (diff) | |
download | meta-freescale-85a5ee8ae14720c0e6ebdade1de9b29451d9e68b.tar.gz |
qoriq-base: Set SOC default IMAGE_FSTYPES
Create SOC_DEFAULT_IMAGE_FSTYPES variable with default IMAGE_FSTYPES
used by all QorIQ targets. Default FSTYPES are tar.gz, ext2.gz.u-boot
and ext2.gz.
The IMAGE_FSTYPES need to be overriden without using the SoC family
overrides, for user-friendness, and to allow this we need to use a SoC
variable to construct the default value for setting.
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/include/qoriq-base.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/machine/include/qoriq-base.inc b/conf/machine/include/qoriq-base.inc index 7360a75a..6c25d50e 100644 --- a/conf/machine/include/qoriq-base.inc +++ b/conf/machine/include/qoriq-base.inc | |||
@@ -11,6 +11,9 @@ PREFERRED_VERSION_testfloat = "2a" | |||
11 | 11 | ||
12 | IMAGE_CLASSES += "image_types_uboot" | 12 | IMAGE_CLASSES += "image_types_uboot" |
13 | 13 | ||
14 | SOC_DEFAULT_IMAGE_FSTYPES = "tar.gz ext2.gz.u-boot ext2.gz" | ||
15 | IMAGE_FSTYPES ?= "${SOC_DEFAULT_IMAGE_FSTYPES}" | ||
16 | |||
14 | MACHINE_FEATURES ?= "pci ext2 ext3 serial" | 17 | MACHINE_FEATURES ?= "pci ext2 ext3 serial" |
15 | MACHINE_EXTRA_RRECOMMENDS += "udev-extraconf udev-rules-qoriq kernel-modules" | 18 | MACHINE_EXTRA_RRECOMMENDS += "udev-extraconf udev-rules-qoriq kernel-modules" |
16 | 19 | ||