Skip to content
Open
Show file tree
Hide file tree
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
28 changes: 0 additions & 28 deletions docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ variable "DISTROS" {
"debian11",
"debian12",
"debian13",
"raspbian11",
"raspbian12",
"ubuntu2204",
"ubuntu2404",
"ubuntu2504",
Expand Down Expand Up @@ -221,30 +219,6 @@ target "_distro-debian13" {
}
}

target "_distro-raspbian11" {
args = {
DISTRO_NAME = "raspbian11"
DISTRO_TYPE = "deb"
DISTRO_RELEASE = "raspbian"
DISTRO_ID = "11"
DISTRO_SUITE = "bullseye"
DISTRO_IMAGE = DISTRO_IMAGE != null && DISTRO_IMAGE != "" ? DISTRO_IMAGE : "balenalib/rpi-raspbian:bullseye"
TEST_ONLY = "0"
}
}

target "_distro-raspbian12" {
args = {
DISTRO_NAME = "raspbian12"
DISTRO_TYPE = "deb"
DISTRO_RELEASE = "raspbian"
DISTRO_ID = "12"
DISTRO_SUITE = "bookworm"
DISTRO_IMAGE = DISTRO_IMAGE != null && DISTRO_IMAGE != "" ? DISTRO_IMAGE : "balenalib/rpi-raspbian:bookworm"
TEST_ONLY = "0"
}
}

target "_distro-ubuntu2204" {
args = {
DISTRO_NAME = "ubuntu2204"
Expand Down Expand Up @@ -476,8 +450,6 @@ function "distroPlatforms" {
debian11 = ["linux/386", "linux/amd64", "linux/arm64", "linux/arm/v7", "linux/mips64le", "linux/ppc64le", "linux/s390x"]
debian12 = ["linux/386", "linux/amd64", "linux/arm64", "linux/arm/v7", "linux/mips64le", "linux/ppc64le", "linux/s390x"]
debian13 = ["linux/386", "linux/amd64", "linux/arm64", "linux/arm/v7", "linux/mips64le", "linux/ppc64le", "linux/riscv64", "linux/s390x"]
raspbian11 = ["linux/arm/v7"]
raspbian12 = ["linux/arm/v7"]
ubuntu2204 = ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/ppc64le", "linux/s390x"]
ubuntu2404 = ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/ppc64le", "linux/riscv64", "linux/s390x"]
ubuntu2504 = ["linux/amd64", "linux/arm64", "linux/arm/v7", "linux/ppc64le", "linux/riscv64", "linux/s390x"]
Expand Down
7 changes: 0 additions & 7 deletions pkg/buildx/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down
7 changes: 0 additions & 7 deletions pkg/cagent/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down
7 changes: 0 additions & 7 deletions pkg/compose/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down
7 changes: 0 additions & 7 deletions pkg/containerd/deb/rules
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

%:
dh $@

Expand Down
7 changes: 0 additions & 7 deletions pkg/credential-helpers/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down
7 changes: 0 additions & 7 deletions pkg/docker-cli/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down
7 changes: 0 additions & 7 deletions pkg/docker-engine/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down
7 changes: 0 additions & 7 deletions pkg/model/deb/rules
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
#!/usr/bin/make -f

# Build Raspbian armhf binaries as ARMv6 with hard float.
include /usr/share/dpkg/vendor.mk
ifeq ($(DEB_VENDOR),Raspbian)
export CFLAGS += -marm -march=armv6+fp
export GOARM := 6
endif

# force packages to be built with xz compression, as Ubuntu 21.10 and up use
# zstd compression, which is non-standard, and breaks 'dpkg-sig --verify'
override_dh_builddeb:
Expand Down