Skip to content
Snippets Groups Projects
Commit 14dbf963 authored by Holger Levsen's avatar Holger Levsen
Browse files

chroot-installs: only install hdmi2usb-mode-switch packages only on bookworm or earlier

parent 1574a0fd
No related branches found
No related tags found
No related merge requests found
......@@ -256,7 +256,11 @@ if [ "$2" != "" ] ; then
;;
developer) install_build_depends developer $FULL_DESKTOP
;;
debconf-video) install_packages ack-grep htop iftop iotop moreutils tmux vnstat icecast2 mpv vlc cu voctomix voctomix-outcasts hdmi2usb-mode-switch hdmi2usb-udev
debconf-video) if [ "$DISTRO" = "bullseye" ] || [ "$DISTRO" = "bookworm" ] ; then
install_packages ack-grep htop iftop iotop moreutils tmux vnstat icecast2 mpv vlc cu voctomix voctomix-outcasts hdmi2usb-mode-switch hdmi2usb-udev
else
install_packages ack-grep htop iftop iotop moreutils tmux vnstat icecast2 mpv vlc cu voctomix voctomix-outcasts
fi
;;
education*) install_packages "Debian Edu task" $2
;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment