blob: fd244c95ad56e3ff75f28ade650274d559011be6 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# Extra packages to build for mLinux feed
FS_PACKAGES="sshfs-fuse fuse-exfat exfat-utils"
NET_PACKAGES="wget netcat ipsec-tools openvpn iftop dnsmasq strongswan stunnel tunctl"
UTIL_PACKAGES="logrotate fatrace stressapptest gawk rsyslog zip gnupg rrdtool"
DEV_PACKAGES="node-red mono gdb git vim"
bitbake linux-firmware $FS_PACKAGES $NET_PACKAGES $UTIL_PACKAGES $DEV_PACKAGES
|