Browse Source

ubuntu add wifi support packages

Signed-off-by: weishanshan1084 <weishanshan1084@phytium.com.cn>
pull/24/head
weishanshan1084 7 months ago
parent
commit
2568e8e38c
  1. 5
      board/phytium/common/ubuntu-additional_packages_list
  2. 5
      board/phytium/common/ubuntu-package-installer

5
board/phytium/common/ubuntu-additional_packages_list

@ -1,8 +1,11 @@
# additional packages list for SDK main userland gathered from main repo
additional_full_packages_list=" "
additional_desktop_packages_list="network-manager-gnome"
# for Lite userland gathered from main repo
additional_base_packages_list="net-tools iputils-ping gcc g++ vim make autoconf automake libtool pkg-config bison bc flex libssl-dev openssh-server python-is-python3 \
libgstreamer1.0-0 gstreamer1.0-plugins-base gstreamer1.0-plugins-good gstreamer1.0-plugins-bad gstreamer1.0-plugins-ugly gstreamer1.0-libav gstreamer1.0-tools \
gstreamer1.0-x gstreamer1.0-alsa gstreamer1.0-gl gstreamer1.0-gtk3 gstreamer1.0-pulseaudio \
dkms initramfs-tools debhelper libgles-dev libexpat1-dev libglvnd-dev"
dkms initramfs-tools debhelper libgles-dev libexpat1-dev libglvnd-dev \
network-manager wpasupplicant wireless-tools parted locales"

5
board/phytium/common/ubuntu-package-installer

@ -85,6 +85,11 @@ do_distrorfs_second_stage() {
echo 'greeter-session=ukui-greeter' >> /etc/lightdm/lightdm.conf
echo 'user-session=xfce' >> /etc/lightdm/lightdm.conf
echo installing desktop packages: $pkglist
for pkg in $additional_desktop_packages_list; do
echo Installing $pkg ...
DEBIAN_FRONTEND=noninteractive apt-get -y -o Dpkg::Options::="--force-confdef" -o Dpkg::Options::="--force-confold" install $pkg || exit 1
done
fi
# clean cached packages
apt-get clean

Loading…
Cancel
Save