diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2015-09-21 16:59:49 -0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2015-09-28 13:48:44 -0300 |
commit | 4b3c534a56658eaa708fe1d63ee8148cf84a0499 (patch) | |
tree | 96bc4e4ac9cf062ffb538cbe032f3341d2ef78c7 | |
parent | 663a838d38dd9124805771637232df0af01efd7c (diff) | |
download | meta-fsl-arm-4b3c534a56658eaa708fe1d63ee8148cf84a0499.tar.gz |
mxs-base.inc: Consolidate IMAGE_FSTYPES definition
The default value for IMAGE_FSTYPES including SDCard class enable all
machine to work out of the box using the .sdcard image.
The removed duplication affected the following machines:
- imx23evk
- imx28evk
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
-rw-r--r-- | conf/machine/imx23evk.conf | 3 | ||||
-rw-r--r-- | conf/machine/imx28evk.conf | 3 | ||||
-rw-r--r-- | conf/machine/include/mxs-base.inc | 3 |
3 files changed, 3 insertions, 6 deletions
diff --git a/conf/machine/imx23evk.conf b/conf/machine/imx23evk.conf index ecaef9a..1d5eaef 100644 --- a/conf/machine/imx23evk.conf +++ b/conf/machine/imx23evk.conf | |||
@@ -13,7 +13,4 @@ UBOOT_MACHINE = "mx23evk_config" | |||
13 | 13 | ||
14 | KERNEL_DEVICETREE = "imx23-evk.dtb" | 14 | KERNEL_DEVICETREE = "imx23-evk.dtb" |
15 | 15 | ||
16 | SDCARD_ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext3" | ||
17 | IMAGE_FSTYPES ?= "tar.bz2 ext3 uboot.mxsboot-sdcard sdcard" | ||
18 | |||
19 | MACHINE_FEATURES = "apm usbgadget usbhost vfat touchscreen" | 16 | MACHINE_FEATURES = "apm usbgadget usbhost vfat touchscreen" |
diff --git a/conf/machine/imx28evk.conf b/conf/machine/imx28evk.conf index 86123c3..5a55d72 100644 --- a/conf/machine/imx28evk.conf +++ b/conf/machine/imx28evk.conf | |||
@@ -17,9 +17,6 @@ UBOOT_CONFIG[sd-auart-console] = "mx28evk_auart_console_config,sdcard" | |||
17 | 17 | ||
18 | KERNEL_DEVICETREE = "imx28-evk.dtb" | 18 | KERNEL_DEVICETREE = "imx28-evk.dtb" |
19 | 19 | ||
20 | SDCARD_ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext3" | ||
21 | IMAGE_FSTYPES ?= "tar.bz2 ext3 uboot.mxsboot-sdcard sdcard" | ||
22 | |||
23 | SERIAL_CONSOLE = "115200 ttyAMA0" | 20 | SERIAL_CONSOLE = "115200 ttyAMA0" |
24 | 21 | ||
25 | MACHINE_FEATURES = "apm usbgadget usbhost vfat alsa touchscreen" | 22 | MACHINE_FEATURES = "apm usbgadget usbhost vfat alsa touchscreen" |
diff --git a/conf/machine/include/mxs-base.inc b/conf/machine/include/mxs-base.inc index d576dd3..b32e926 100644 --- a/conf/machine/include/mxs-base.inc +++ b/conf/machine/include/mxs-base.inc | |||
@@ -35,5 +35,8 @@ SERIAL_CONSOLE = "115200 ttyAMA0" | |||
35 | 35 | ||
36 | KERNEL_IMAGETYPE = "zImage" | 36 | KERNEL_IMAGETYPE = "zImage" |
37 | 37 | ||
38 | SDCARD_ROOTFS ?= "${DEPLOY_DIR_IMAGE}/${IMAGE_NAME}.rootfs.ext3" | ||
39 | IMAGE_FSTYPES ?= "tar.bz2 ext3 uboot.mxsboot-sdcard sdcard" | ||
40 | |||
38 | # Add the ability to specify _imx machines | 41 | # Add the ability to specify _imx machines |
39 | MACHINEOVERRIDES =. "imx:" | 42 | MACHINEOVERRIDES =. "imx:" |