Skip to content
Draft
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
2 changes: 1 addition & 1 deletion images/flashbox-l1.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ Include=modules/flashbox/flashbox-l1/mkosi.conf
Profiles=azure,gcp

[Distribution]
Snapshot=20260430T025253Z
Snapshot=20260519T000413Z
2 changes: 1 addition & 1 deletion images/flashbox-l2.conf
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ Include=modules/flashbox/flashbox-l2/mkosi.conf
Profiles=gcp

[Distribution]
Snapshot=20260430T025253Z
Snapshot=20260519T000413Z
2 changes: 1 addition & 1 deletion images/l2-op-rbuilder-bproxy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Profiles=gcp

[Distribution]
Snapshot=20260430T025253Z
Snapshot=20260519T000413Z

[Include]
Include=shared/mkosi.conf
Expand Down
2 changes: 1 addition & 1 deletion images/l2-op-rbuilder.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Profiles=gcp

[Distribution]
Snapshot=20260430T025253Z
Snapshot=20260519T000413Z

[Include]
Include=shared/mkosi.conf
Expand Down
2 changes: 1 addition & 1 deletion images/l2-simulator.conf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Profiles=gcp

[Distribution]
Snapshot=20260430T025253Z
Snapshot=20260519T000413Z

[Include]
Include=shared/mkosi.conf
Expand Down
2 changes: 1 addition & 1 deletion shared/mkosi.build.d/10-kernel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ else
kernel_src_dir="${BUILDROOT}${chroot_kernel_src_dir}"
kconfig_dir="${BUILDROOT}${chroot_kconfig_dir}"

apt-get -y install "linux-source-${KERNEL_VERSION}/${release}-backports" --install-recommends
apt-get -y install "linux-source-${KERNEL_VERSION}" --install-recommends

source_tarball="${BUILDROOT}/usr/src/linux-source-${KERNEL_VERSION}.tar.xz"
if [[ ! -f "${source_tarball}" ]]; then
Expand Down
2 changes: 1 addition & 1 deletion shared/mkosi.conf
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Release=trixie
[Build]
PackageCacheDirectory=mkosi.cache
SandboxTrees=mkosi.builddir/mkosi.sources:/etc/apt/sources.list.d/mkosi.sources
Environment=KERNEL_VERSION=6.19
Environment=KERNEL_VERSION=6.12
KERNEL_CONFIG_SNIPPETS=shared/kernel/config.d
KERNEL_PATCHES=shared/kernel/patches
WithNetwork=true
Expand Down
8 changes: 8 additions & 0 deletions shared/mkosi.sync.d/10-setup-apt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
SNAPSHOT=$(jq -r .Snapshot /work/config.json)
if [ "$SNAPSHOT" = "null" ]; then
MIRROR="http://deb.debian.org/debian"
MIRROR_SECURITY="http://security.debian.org/debian-security"
else
MIRROR="http://snapshot.debian.org/archive/debian/${SNAPSHOT}"
MIRROR_SECURITY="http://snapshot.debian.org/archive/debian-security/${SNAPSHOT}"
fi

cat > "$SRCDIR/mkosi.builddir/mkosi.sources" <<EOF
Expand All @@ -14,4 +16,10 @@ URIs: $MIRROR
Suites: ${RELEASE} ${RELEASE}-backports
Components: main
Trusted: yes

Types: deb deb-src
URIs: $MIRROR_SECURITY
Suites: ${RELEASE}-security
Components: main
Trusted: yes
EOF