diff options
| author | John Klug <john.klug@multitech.com> | 2019-08-30 16:18:07 -0500 | 
|---|---|---|
| committer | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2020-05-20 19:50:20 +0300 | 
| commit | 4da364c0fe31d5d531f04bda5f44a101a7c4fb09 (patch) | |
| tree | d4688a8f30809814325382cf422fbf86b9391ef5 | |
| parent | 9c5e468a6cad4e93b06fc4bf094977bb84ac1277 (diff) | |
| download | meta-mlinux-atmel-4da364c0fe31d5d531f04bda5f44a101a7c4fb09.tar.gz meta-mlinux-atmel-4da364c0fe31d5d531f04bda5f44a101a7c4fb09.tar.bz2 meta-mlinux-atmel-4da364c0fe31d5d531f04bda5f44a101a7c4fb09.zip | |
Fix broken appends in image recipes
| -rw-r--r-- | recipes-core/images/mlinux-factory-image.bb | 2 | ||||
| -rw-r--r-- | recipes-core/images/mlinux-minimal-image.bb | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/recipes-core/images/mlinux-factory-image.bb b/recipes-core/images/mlinux-factory-image.bb index 0dc54f3..68b79fb 100644 --- a/recipes-core/images/mlinux-factory-image.bb +++ b/recipes-core/images/mlinux-factory-image.bb @@ -27,7 +27,7 @@ IMAGE_INSTALL += "monit"  # LoRa support (MTAC-LORA accessory card)  IMAGE_INSTALL += "lora-gateway-utils lora-query lora-network-server lora-packet-forwarder-usb lora-gateway-geolocation-utils lora-packet-forwarder-geolocation" -IMAGE_INSTALL_mtbsp-at91 += "mtac-xdot-util" +IMAGE_INSTALL_mtbsp-at91_append = "mtac-xdot-util"  # MQTT server  #IMAGE_INSTALL += "mosquitto" diff --git a/recipes-core/images/mlinux-minimal-image.bb b/recipes-core/images/mlinux-minimal-image.bb index 2cecc1e..2ad7b97 100644 --- a/recipes-core/images/mlinux-minimal-image.bb +++ b/recipes-core/images/mlinux-minimal-image.bb @@ -23,7 +23,7 @@ CORE_FEATURES = "packagegroup-core-boot packagegroup-distro-base \                   get-eeprom-device-config \                   " -CORE_FEATURES_mtbsp-at91 += "mtd-utils mtd-utils-jffs2"  +CORE_FEATURES_mtbsp-at91_append = "mtd-utils mtd-utils-jffs2"   NETWORKING_FEATURES = "ppp curl iproute2 \                         iptables iputils \ | 
