Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mesa-vpu: add chromium back for debian and noble #7839

Merged
merged 1 commit into from
Feb 20, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions extensions/mesa-vpu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,13 @@ function post_install_kernel_debs__3d() {
Pin: release o=LP-PPA-kisak-kisak-mesa
Pin-Priority: 1001
EOF
fi

# Add chromium if building a desktop
if [[ "${BUILD_DESKTOP}" == "yes" ]]; then
# Add chromium if building a desktop
if [[ "${BUILD_DESKTOP}" == "yes" ]]; then
if [[ "${DISTRIBUTION}" == "Debian" ]]; then
pkgs+=("chromium")
elif [[ "${DISTRIBUTION}" == "Ubuntu" && "${RELEASE}" =~ ^(jammy|noble)$ ]]; then
pkgs+=("chromium")
fi
fi
Expand Down
Loading