diff options
author | Tom Rini <trini@ti.com> | 2012-03-29 10:18:16 -0700 |
---|---|---|
committer | Denys Dmytriyenko <denys@ti.com> | 2012-03-30 01:45:33 -0400 |
commit | 1081734754ec74f55e1e310427c20d56f3357f34 (patch) | |
tree | c38792270ef1a36e0dc3cbf226df66851dff8149 /conf/machine/include | |
parent | 2b300f08cae35d065f27c0b3e4c285b61740a6a6 (diff) | |
download | meta-ti-1081734754ec74f55e1e310427c20d56f3357f34.tar.gz |
ti814x.inc: Use '+=' not '?=' in IMAGE_FSTYPES
As per
http://lists.linuxtogo.org/pipermail/openembedded-core/2012-March/020053.html
a machine conf file should use '+=' to set IMAGE_FSTYPES.
Signed-off-by: Tom Rini <trini@ti.com>
Signed-off-by: Denys Dmytriyenko <denys@ti.com>
Diffstat (limited to 'conf/machine/include')
-rw-r--r-- | conf/machine/include/ti814x.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/conf/machine/include/ti814x.inc b/conf/machine/include/ti814x.inc index c53557f4..475a2127 100644 --- a/conf/machine/include/ti814x.inc +++ b/conf/machine/include/ti814x.inc | |||
@@ -20,7 +20,7 @@ UBOOT_LOADADDRESS = "0x80008000" | |||
20 | EXTRA_IMAGEDEPENDS += "u-boot" | 20 | EXTRA_IMAGEDEPENDS += "u-boot" |
21 | 21 | ||
22 | # Ship all kernel modules | 22 | # Ship all kernel modules |
23 | IMAGE_FSTYPES ?= "jffs2 tar.bz2" | 23 | IMAGE_FSTYPES += "jffs2 tar.bz2" |
24 | EXTRA_IMAGECMD_jffs2 = "-lqn -e 128" | 24 | EXTRA_IMAGECMD_jffs2 = "-lqn -e 128" |
25 | SERIAL_CONSOLE = "115200 ttyO0" | 25 | SERIAL_CONSOLE = "115200 ttyO0" |
26 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 ethernet" | 26 | MACHINE_FEATURES = "kernel26 apm usbgadget usbhost vfat ext2 ethernet" |