forked from puppetlabs-toy-chest/puppet-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
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 puppetlabs-toy-chest#773 from h0tw1r3/PA-5751-debi…
…an-12-arm (PA-5751) debian 12 arm platform support
- Loading branch information
Showing
2 changed files
with
51 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
platform "debian-12-aarch64" do |plat| | ||
plat.inherit_from_default | ||
packages = [ | ||
'build-essential', | ||
'cmake', | ||
'debhelper', | ||
'devscripts', | ||
'fakeroot', | ||
'libbz2-dev', | ||
'libreadline-dev', | ||
'libselinux1-dev', | ||
'make', | ||
'pkg-config', | ||
'quilt', | ||
'rsync', | ||
'swig', | ||
'systemtap-sdt-dev', | ||
'zlib1g-dev' | ||
] | ||
plat.provision_with "export DEBIAN_FRONTEND=noninteractive; apt-get update -qq; apt-get install -qy --no-install-recommends #{packages.join(' ')}" | ||
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,30 @@ | ||
platform "debian-12-armhf" do |plat| | ||
plat.servicedir "/lib/systemd/system" | ||
plat.defaultdir "/etc/default" | ||
plat.servicetype "systemd" | ||
plat.codename "bullseye" | ||
|
||
plat.install_build_dependencies_with "DEBIAN_FRONTEND=noninteractive; apt-get install -qy --no-install-recommends " | ||
|
||
packages = [ | ||
"build-essential", | ||
"make", | ||
"quilt", | ||
"pkg-config", | ||
"debhelper", | ||
"rsync", | ||
"fakeroot", | ||
"libbz2-dev", | ||
"libreadline-dev", | ||
"libselinux1-dev", | ||
"make", | ||
"pkg-config", | ||
"cmake", | ||
"gcc", | ||
"swig", | ||
"systemtap-sdt-dev", | ||
"zlib1g-dev" | ||
] | ||
|
||
plat.provision_with "export DEBIAN_FRONTEND=noninteractive && apt-get update -qq && apt-get install -qy --no-install-recommends #{packages.join(' ')}" | ||
end |