tag v0.165.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.165.0 ---------------- * distro: move rhel9 into a generic distro (osbuild/images#1645) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * Revert "distro: drop `ImageType.BasePartitionTable()`" (osbuild/images#1691) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * Update dependencies 2025-07-20 (osbuild/images#1675) * Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger * defs: add missing `bootstrap_containers` (osbuild/images#1679) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * disk: handle adding `PReP` partition on PPC64/s390x (HMS-8884) (osbuild/images#1681) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * distro: bring per-distro checkOptions back (osbuild/images#1678) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * distro: cleanups in the pkg/distro/generic area (osbuild/images#1686) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * distro: move rhel8 into a generic distro (osbuild/images#1643) * Author: Michael Vogt, Reviewers: Nobody * distro: small followups for PR#1682 (osbuild/images#1689) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger, Tomáš Hozza * distro: unify transform/match into a single concept (osbuild/images#1682) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Tomáš Hozza * distros: de-duplicate runner build packages for centos10 (osbuild/images#1680) * Author: Michael Vogt, Reviewers: Simon de Vlieger, Tomáš Hozza * github: disable Go dep updates through dependabot (osbuild/images#1683) * Author: Achilleas Koutsou, Reviewers: Simon de Vlieger, Tomáš Hozza * repos: include almalinux 9.6 (osbuild/images#1677) * Author: Simon de Vlieger, Reviewers: Lukáš Zapletal, Tomáš Hozza * rhel9: wsl distribution config (osbuild/images#1694) * Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers * test/manifests/all-customizations: don't embed local file via URI (osbuild/images#1684) * Author: Tomáš Hozza, Reviewers: Achilleas Koutsou, Brian C. Lane — Somewhere on the Internet, 2025-07-28 --- tag v0.166.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.166.0 ---------------- * customizations/subscription: conditionally enable semanage call (HMS-8866) (osbuild/images#1673) * Author: Sanne Raymaekers, Reviewers: Achilleas Koutsou, Michael Vogt * distro/rhel-10: versionlock shim-x64 in the azure-cvm image (osbuild/images#1697) * Author: Achilleas Koutsou, Reviewers: Michael Vogt, Simon de Vlieger * manifestmock: move container/pkg/commit mocks into helper (osbuild/images#1700) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * rhel9: `vagrant-libvirt`, `vagrant-virtualbox` (osbuild/images#1693) * Author: Simon de Vlieger, Reviewers: Michael Vogt, Sanne Raymaekers * rhel{9,10}: centos WSL refinement (HMS-8922) (osbuild/images#1690) * Author: Simon de Vlieger, Reviewers: Ondřej Budai, Sanne Raymaekers, Tomáš Hozza — Somewhere on the Internet, 2025-07-29 --- tag v0.167.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.167.0 ---------------- * RHEL/Azure: drop obsolete WAAgentConfig keys [RHEL-93894] and remove loglevel kernel option [RHEL-102372] (osbuild/images#1611) * Author: Achilleas Koutsou, Reviewers: Michael Vogt, Ondřej Budai, Sanne Raymaekers * Update dependencies 2025-07-27 (osbuild/images#1699) * Author: SchutzBot, Reviewers: Achilleas Koutsou, Simon de Vlieger * distro/rhel9: set default_kernel to kernel-uki-virt (osbuild/images#1704) * Author: Achilleas Koutsou, Reviewers: Ondřej Budai, Simon de Vlieger * distro: drop legacy loaders and update tests (osbuild/images#1687) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Tomáš Hozza * distro: fix issues with yaml distro definitions and enable yaml checks (osbuild/images#1702) * Author: Achilleas Koutsou, Reviewers: Michael Vogt, Ondřej Budai, Simon de Vlieger — Somewhere on the Internet, 2025-07-30 --- tag v0.168.0 Tagger: imagebuilder-bot <imagebuilder-bots+imagebuilder-bot@redhat.com> Changes with 0.168.0 ---------------- * distro: fix bug in variable substitution for static distros (osbuild/images#1710) * Author: Michael Vogt, Reviewers: Achilleas Koutsou, Simon de Vlieger * rhel{9,10}: azure for non-RHEL (HMS-8949) (osbuild/images#1707) * Author: Simon de Vlieger, Reviewers: Achilleas Koutsou, Michael Vogt — Somewhere on the Internet, 2025-07-30 ---
98 lines
3 KiB
Makefile
98 lines
3 KiB
Makefile
include Makefile.bootfiles
|
|
|
|
GO:=go
|
|
GO_FLAGS:=-ldflags "-s -w" # strip Go binaries
|
|
CGO_ENABLED:=0
|
|
GOMODVENDOR:=
|
|
KMOD:=0
|
|
|
|
CFLAGS:=-O2 -Wall
|
|
LDFLAGS:=-static -s #strip C binaries
|
|
LDLIBS:=
|
|
PREPROCESSORFLAGS:=
|
|
ifeq "$(KMOD)" "1"
|
|
LDFLAGS:= -s
|
|
LDLIBS:= -lkmod
|
|
PREPROCESSORFLAGS:=-DMODULES=1
|
|
endif
|
|
|
|
GO_FLAGS_EXTRA:=
|
|
ifeq "$(GOMODVENDOR)" "1"
|
|
GO_FLAGS_EXTRA += -mod=vendor
|
|
endif
|
|
GO_BUILD_TAGS:=
|
|
ifneq ($(strip $(GO_BUILD_TAGS)),)
|
|
GO_FLAGS_EXTRA += -tags="$(GO_BUILD_TAGS)"
|
|
endif
|
|
GO_BUILD:=CGO_ENABLED=$(CGO_ENABLED) $(GO) build $(GO_FLAGS) $(GO_FLAGS_EXTRA)
|
|
|
|
SRCROOT=$(dir $(abspath $(firstword $(MAKEFILE_LIST))))
|
|
# additional directories to search for rule prerequisites and targets
|
|
VPATH=$(SRCROOT)
|
|
|
|
# The link aliases for gcstools
|
|
GCS_TOOLS=\
|
|
generichook \
|
|
install-drivers
|
|
|
|
test:
|
|
cd $(SRCROOT) && $(GO) test -v ./internal/guest/...
|
|
|
|
# This target includes utilities which may be useful for testing purposes.
|
|
out/delta-dev.tar.gz: out/delta.tar.gz bin/internal/tools/snp-report
|
|
rm -rf rootfs-dev
|
|
mkdir rootfs-dev
|
|
tar -xzf out/delta.tar.gz -C rootfs-dev
|
|
cp bin/internal/tools/snp-report rootfs-dev/bin/
|
|
tar -zcf $@ -C rootfs-dev .
|
|
rm -rf rootfs-dev
|
|
|
|
out/delta-snp.tar.gz: out/delta.tar.gz bin/internal/tools/snp-report boot/startup_v2056.sh boot/startup_simple.sh boot/startup.sh
|
|
rm -rf rootfs-snp
|
|
mkdir rootfs-snp
|
|
tar -xzf out/delta.tar.gz -C rootfs-snp
|
|
cp boot/startup_v2056.sh rootfs-snp/startup_v2056.sh
|
|
cp boot/startup_simple.sh rootfs-snp/startup_simple.sh
|
|
cp boot/startup.sh rootfs-snp/startup.sh
|
|
cp bin/internal/tools/snp-report rootfs-snp/bin/
|
|
chmod a+x rootfs-snp/startup_v2056.sh
|
|
chmod a+x rootfs-snp/startup_simple.sh
|
|
chmod a+x rootfs-snp/startup.sh
|
|
tar -zcf $@ -C rootfs-snp .
|
|
rm -rf rootfs-snp
|
|
|
|
out/delta.tar.gz: bin/init bin/vsockexec bin/cmd/gcs bin/cmd/gcstools bin/cmd/hooks/wait-paths Makefile
|
|
@mkdir -p out
|
|
rm -rf rootfs
|
|
mkdir -p rootfs/bin/
|
|
mkdir -p rootfs/info/
|
|
cp bin/init rootfs/
|
|
cp bin/vsockexec rootfs/bin/
|
|
cp bin/cmd/gcs rootfs/bin/
|
|
cp bin/cmd/gcstools rootfs/bin/
|
|
cp bin/cmd/hooks/wait-paths rootfs/bin/
|
|
for tool in $(GCS_TOOLS); do ln -s gcstools rootfs/bin/$$tool; done
|
|
git -C $(SRCROOT) rev-parse HEAD > rootfs/info/gcs.commit && \
|
|
git -C $(SRCROOT) rev-parse --abbrev-ref HEAD > rootfs/info/gcs.branch && \
|
|
date --iso-8601=minute --utc > rootfs/info/tar.date
|
|
$(if $(and $(realpath $(subst .tar,.testdata.json,$(BASE))), $(shell which jq)), \
|
|
jq -r '.IMAGE_NAME' $(subst .tar,.testdata.json,$(BASE)) 2>/dev/null > rootfs/info/image.name && \
|
|
jq -r '.DATETIME' $(subst .tar,.testdata.json,$(BASE)) 2>/dev/null > rootfs/info/build.date)
|
|
tar -zcf $@ -C rootfs .
|
|
rm -rf rootfs
|
|
|
|
bin/cmd/gcs bin/cmd/gcstools bin/cmd/hooks/wait-paths bin/cmd/tar2ext4 bin/internal/tools/snp-report:
|
|
@mkdir -p $(dir $@)
|
|
GOOS=linux $(GO_BUILD) -o $@ $(SRCROOT)/$(@:bin/%=%)
|
|
|
|
bin/vsockexec: vsockexec/vsockexec.o vsockexec/vsock.o
|
|
@mkdir -p bin
|
|
$(CC) $(LDFLAGS) -o $@ $^
|
|
|
|
bin/init: init/init.o vsockexec/vsock.o
|
|
@mkdir -p bin
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
|
|
|
%.o: %.c
|
|
@mkdir -p $(dir $@)
|
|
$(CC) $(PREPROCESSORFLAGS) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<
|