-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #832 from h0tw1r3/bookworm
(maint) Add Debian 12 bookworm platform definitions
- Loading branch information
Showing
3 changed files
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
platform "debian-12-aarch64" do |plat| | ||
plat.servicedir "/lib/systemd/system" | ||
plat.defaultdir "/etc/default" | ||
plat.servicetype "systemd" | ||
plat.codename "bookworm" | ||
|
||
packages = %w(build-essential devscripts make quilt pkg-config debhelper rsync fakeroot cmake) | ||
plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends #{packages.join(' ')}" | ||
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends " | ||
plat.vmpooler_template "debian-12-arm64" | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
platform "debian-12-amd64" do |plat| | ||
plat.servicedir "/lib/systemd/system" | ||
plat.defaultdir "/etc/default" | ||
plat.servicetype "systemd" | ||
plat.codename "bookworm" | ||
|
||
packages = %w(build-essential devscripts make quilt pkg-config debhelper rsync fakeroot cmake) | ||
plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends #{packages.join(' ')}" | ||
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends " | ||
plat.vmpooler_template "debian-12-x86_64" | ||
end |