diff options
author | John Klug <john.klug@multitech.com> | 2020-11-11 14:22:06 -0600 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2020-11-11 14:22:06 -0600 |
commit | d75cc859d0009649aa5c97731933b50ba48231ba (patch) | |
tree | fbd1fac00b1f4a4b5688352f402335918f7c4807 /recipes-core/images/mlinux-base-image.bb | |
download | meta-mlinux-atmel-d75cc859d0009649aa5c97731933b50ba48231ba.tar.gz meta-mlinux-atmel-d75cc859d0009649aa5c97731933b50ba48231ba.tar.bz2 meta-mlinux-atmel-d75cc859d0009649aa5c97731933b50ba48231ba.zip |
MultiTech mLinux Atmel distribution OpenEmbedded layer5.3.0a
Diffstat (limited to 'recipes-core/images/mlinux-base-image.bb')
-rw-r--r-- | recipes-core/images/mlinux-base-image.bb | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/recipes-core/images/mlinux-base-image.bb b/recipes-core/images/mlinux-base-image.bb new file mode 100644 index 0000000..e61a7f7 --- /dev/null +++ b/recipes-core/images/mlinux-base-image.bb @@ -0,0 +1,75 @@ +# Conduit 0.0 or 0.1 without RS9113 +DESCRIPTION = "mLinux base image" +LICENSE = "MIT" + +require mlinux-minimal-image.bb + +FILESYSTEM_FEATURES = "dosfstools \ + cifs-utils \ + lsof \ + " + +NETWORKING_FEATURES_append = " \ + bridge-utils \ + inetutils-ftp \ + openssl \ + rsync \ + iperf3 \ + lldpd \ + mii-diag \ + tcpdump \ + netcat \ + wget \ + strongswan \ + busybox-ifplugd \ + " + +WIFI_FEATURES = " \ + libnl \ + wpa-supplicant \ + iw \ + hostapd \ + hostapd-cfg \ + " + +BLUETOOTH_FEATURES = "bluez5" +BLUETOOTH_INIT ??= "bluez5-mlinit" + +# Add all timezones available +# ntpdate will sync time every 30 min by default via cron +TIME_FEATURES = "tzdata tzdata-africa tzdata-americas tzdata-antarctica tzdata-arctic \ + tzdata-asia tzdata-atlantic tzdata-australia tzdata-europe tzdata-pacific \ + tzdata-misc \ + cronie \ + ntpdate \ + " + +# u-boot-linux-utils: U-Boot environment access from Linux +# mlinux-scripts: sample scripts for setting up Conduit for various tasks +# reset-handler: default reset button handler +# 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_append = " \ + u-boot-linux-utils \ + mlinux-scripts \ + reset-handler \ + radio-cmd radio-query \ + jsparser \ + " + +MISC_FEATURES = "minicom lrzsz nano" + +DEBUG_FEATURES = "" + +# Extra stuff to install +IMAGE_INSTALL_append = " \ + kernel-modules \ + ${WIFI_FEATURES} \ + ${BLUETOOTH_FEATURES} \ + ${BLUETOOTH_INIT} \ + ${FILESYSTEM_FEATURES} \ + ${TIME_FEATURES} \ + ${MISC_FEATURES} \ + ${DEBUG_FEATURES} \ + " |