diff options
author | John Klug <john.klug@multitech.com> | 2019-09-05 11:33:26 -0500 |
---|---|---|
committer | Serhii Kostiuk <serhii.o.kostiuk@globallogic.com> | 2020-05-20 19:50:20 +0300 |
commit | 6e767e79c95b109fc950975c37dbc143e280f3da (patch) | |
tree | b85d71b2823b158218e4ff2fc2fc9b7efec2ffe7 /recipes-core/images/mlinux-mtrv1-image.bb | |
parent | ea65654f5c64b4f7c7d678425780bdec95962a4f (diff) | |
download | meta-mlinux-atmel-6e767e79c95b109fc950975c37dbc143e280f3da.tar.gz meta-mlinux-atmel-6e767e79c95b109fc950975c37dbc143e280f3da.tar.bz2 meta-mlinux-atmel-6e767e79c95b109fc950975c37dbc143e280f3da.zip |
Remove += from all image recipe files
Diffstat (limited to 'recipes-core/images/mlinux-mtrv1-image.bb')
-rw-r--r-- | recipes-core/images/mlinux-mtrv1-image.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/recipes-core/images/mlinux-mtrv1-image.bb b/recipes-core/images/mlinux-mtrv1-image.bb index a5deb99..fd1ea6a 100644 --- a/recipes-core/images/mlinux-mtrv1-image.bb +++ b/recipes-core/images/mlinux-mtrv1-image.bb @@ -9,7 +9,7 @@ FILESYSTEM_FEATURES = "dosfstools \ lsof \ " -NETWORKING_FEATURES += "bridge-utils \ +NETWORKING_FEATURES_append = "bridge-utils \ inetutils-ftp \ openssl \ rsync \ @@ -46,7 +46,7 @@ TIME_FEATURES = "tzdata tzdata-africa tzdata-americas tzdata-antarctica tzdata-a # radio-cmd: supports cellular radio activation and other configuration commands # radio-query: queries cellular radio for common info (IMEI, RSSI, etc) # jsparser: command line tool to parse JSON files -MULTITECH_FEATURES += " \ +MULTITECH_FEATURES_append = " \ u-boot-linux-utils \ mlinux-scripts \ reset-handler \ @@ -57,10 +57,10 @@ MULTITECH_FEATURES += " \ MISC_FEATURES = "minicom lrzsz nano" # Extra stuff to install -IMAGE_INSTALL += "kernel-module-rs9113 rs9113-util rs9113-autostart" -IMAGE_INSTALL += "gpsd libgps libgps24 ntp ntp-utils gpspipe gps-utils" +IMAGE_INSTALL_append = "kernel-module-rs9113 rs9113-util rs9113-autostart" +IMAGE_INSTALL_append = "gpsd libgps libgps24 ntp ntp-utils gpspipe gps-utils" -IMAGE_INSTALL += " \ +IMAGE_INSTALL_append = " \ ${WIFI_FEATURES} \ ${BLUETOOTH_FEATURES} \ ${FILESYSTEM_FEATURES} \ |