diff options
author | Jesse Gilles <jgilles@multitech.com> | 2013-02-19 10:12:49 -0600 |
---|---|---|
committer | Jesse Gilles <jgilles@multitech.com> | 2013-02-19 10:12:49 -0600 |
commit | 29f8850c7c2233c097bafbab0901d011c77d6f1d (patch) | |
tree | 32697cdb4cec490a09f2579d63fe77faecab4850 /multitech/recipes | |
parent | 9d84b9847fa970a06605d1a156223c1184774a80 (diff) |
corecdp-base-image: add wifi and bluetooth support for mtocgd3
Adds wifi and blueooth support for mtocgd3 and mt100eocg-pcie-dk
Also adds Exar vizzini driver for mtocgd3 (for RS485 support)
Diffstat (limited to 'multitech/recipes')
-rw-r--r-- | multitech/recipes/images/corecdp-base-image.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/multitech/recipes/images/corecdp-base-image.bb b/multitech/recipes/images/corecdp-base-image.bb index 8f95f2b..53e4a1e 100644 --- a/multitech/recipes/images/corecdp-base-image.bb +++ b/multitech/recipes/images/corecdp-base-image.bb @@ -26,8 +26,23 @@ NETWORKING_FEATURES = "ppp \ openssl \ openssh-sftp-server \ rsync \ + iperf \ " +WIFI_FEATURES = " \ + libnl \ + wpa-supplicant \ + wireless-tools \ + iw \ + " + +WL1271_SUPPORT = " \ + ti-compat-wireless-wl12xx wl12xx-firmware \ + ti-wifi-utils \ + " + +BLUETOOTH_FEATURES = "bluez4" + TIME_FEATURES = "tzdata \ cron \ ntpdate \ @@ -65,6 +80,13 @@ IMAGE_INSTALL = "task-boot \ ${MISC_FEATURES} \ " +# Add Wi-fi/Bluetooth support for devices that support it +IMAGE_INSTALL_append_mtocgd3 = " ${WIFI_FEATURES} ${WL1271_SUPPORT} ${BLUETOOTH_FEATURES} " +IMAGE_INSTALL_append_mt100eocg-pcie-dk = " ${WIFI_FEATURES} ${WL1271_SUPPORT} ${BLUETOOTH_FEATURES} " + +# Add exar usb-serial driver for mtocgd3 hardware +IMAGE_INSTALL_append_mtocgd3 += "vizzini" + IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp" export IMAGE_BASENAME = "corecdp-base-image" |