Commit Graph

18039 Commits

Author SHA1 Message Date
Flatcar Buildbot
5ce9e14fec sys-kernel/coreos-sources: Update from 6.6.28 to 6.6.30 2024-05-03 07:12:18 +00:00
flatcar-ci
4450bb6d1b New version: main-3958.0.0-nightly-20240502-2100 2024-05-02 21:00:25 +00:00
Flatcar Buildbot
158314047b portage-stable/metadata: Monthly GLSA metadata updates 2024-05-01 07:18:57 +00:00
flatcar-ci
374e5764f9 New version: main-3956.0.0-nightly-20240430-2100 2024-04-30 21:00:24 +00:00
Adrian Vladu
6efe345d89 image: add kubevirt image build
As Ignition supports KubeVirt, add a custom oem for it and also the
required parts to be able to build an image in .qcow2 format that
is already using internal .qcow2 gzip compression.

Fixes: https://github.com/flatcar/Flatcar/issues/1358

Signed-off-by: Adrian Vladu <avladu@cloudbasesolutions.com>
2024-04-30 09:19:16 +03:00
flatcar-ci
00e7839540 New version: main-3955.0.0-nightly-20240429-2100 2024-04-29 21:00:27 +00:00
flatcar-ci
76649556b0 New version: main-3952.0.0-nightly-20240426-2100 2024-04-27 02:32:20 +00:00
flatcar-ci
3b22a30050 New version: main-3952.0.0-nightly-20240426-2100-INTERMEDIATE 2024-04-26 21:00:25 +00:00
Flatcar Buildbot
3a7330f697 app-containers/containerd: Update from 1.7.15 to 1.7.16 2024-04-26 08:16:43 +00:00
flatcar-ci
038ec80ec0 New version: main-3951.0.0-nightly-20240425-2100 2024-04-25 21:00:28 +00:00
Krzesimir Nowak
ed642d106b
Merge pull request #1949 from flatcar/buildbot/weekly-portage-stable-package-updates-2024-04-22
Weekly portage-stable package updates 2024-04-22
2024-04-25 17:16:42 +02:00
Jeremi Piotrowski
0d40f3cba6
Merge pull request #1950 from flatcar/jepio/azure-fixes
Update Azure patch.
Add azure-nvme-utils for nvme symlinks.
Disable interface restart during waagent init on Azure.
2024-04-25 15:34:26 +02:00
Dongsu Park
d669e08645
Merge pull request #1931 from flatcar/linux-6.6.28-main
Upgrade Linux Kernel for main from 6.6.21 to 6.6.28
2024-04-25 09:03:28 +02:00
flatcar-ci
5ec9031e9d New version: main-3950.0.0-nightly-20240424-2100 2024-04-24 21:00:27 +00:00
Jeremi Piotrowski
c7363daab5 app-admin/azure-nvme-utils: Add to coreos
This is a new package that is being developed to handle providing
symlinks for nvme disks (os,data,temporary) on newer Azure instances.
It needs to be part of the OS, and not oem-azure, because it carries
udev rules.

Signed-off-by: Jeremi Piotrowski <jpiotrowski@microsoft.com>
2024-04-24 16:03:31 +00:00
Jeremi Piotrowski
9556c7f94b app-emulation/wa-linux-agent: Disable interface restarting
Flatcar prepares /etc/hostname from the initrd through afterburn. After
switching root, systemd-networkd fetches a dhcp lease with the correct
hostname already. This publishes the hostname to the vnet DNS server as
well. When WALinuxAgent starts, it tries to do the same steps: configure
the hostname, bounce the link to force dhcp lease renewal. This has
caused issues in the past with multi-nic configurations but also with
networked services that are trying to use the network (etcd/flanneld).

The link bouncing by WALinuxAgent is not necessary because of Flatcars
boot design, so return without bouncing the link. Tested that DNS from
other VMs in the same vnet works.

Signed-off-by: Jeremi Piotrowski <jpiotrowski@microsoft.com>
2024-04-24 16:03:31 +00:00
Jeremi Piotrowski
f9a1e23a92 app-emulation/wa-linux-agent: Update Flatcar patch
When CoreosCommonUtil was factored out, we missed updating the class
name in a call to super(). This results in an error when executing
`/usr/sbin/waagent -force -deprovision+user`. Fix the class name.

Create a compatibility symlink at the old config file location
(/usr/share/oem/waagent.conf) to handle the case of enabling
auto-updates on the agent. The upstream version of the agent does not
have our downstream patch so doesn't know about the updated config file
location. We should upstream our changes.

Signed-off-by: Jeremi Piotrowski <jpiotrowski@microsoft.com>
2024-04-24 16:03:31 +00:00
Flatcar Buildbot
e62221d757 sys-kernel/coreos-sources: Update from 6.6.21 to 6.6.28 2024-04-24 15:05:13 +02:00
Dongsu Park
8e46d15150
Merge pull request #1951 from flatcar/dongsu/zfs-kernel-version
coreos/config zfs-kmod: fix Kernel version issue for build_sysext
2024-04-24 15:03:00 +02:00
Krzesimir Nowak
3fc61ba177
Merge pull request #1753 from flatcar/krnowak/systemd-sysext
overlay sys-apps/systemd: Sync with Gentoo, bump to v255.4 and add patches for mutable overlays functionality
2024-04-24 14:04:56 +02:00
Dongsu Park
17b1b63d76 config sys-fs/zfs-kmod: fix Kernel version issue of zfs-kmod
In case of sysext of zfs-kmod, pkg_setup() calls linux-info_get_any_version()
of eclass/linux-info.eclass with MERGE_TYPE=binary and
LINUX_INFO_BINARY_RESET=0. That results in KV_FULL and KV_OUT_DIR being
unset, which is not what we want. So set LINUX_INFO_BINARY_RESET=1 to
avoid such side effect.

Without setting them, build_sysext complains like below, i.e. it tries to find
System.map of a wrong Kernel version 6.6.21, when it should find a newer
version like 6.6.23. That results in subsequent zfs CI tests failing due to
missing files like System.map and module deps.

```
System.map for kernel 6.6.21-flatcar was not found, may be due to the
built kernel sources no longer being available and lacking the fallback:
```

Suggested-by: Jeremi Piotrowski <jpiotrowski@microsoft.com>
2024-04-24 13:59:07 +02:00
Kai Lüke
5f177dfa20
Merge pull request #1948 from space55/main
Add CONFIG_PPS_CLIENT_GPIO=m
2024-04-24 04:21:06 +02:00
flatcar-ci
2dda585bae New version: main-3949.0.0-nightly-20240423-2100 2024-04-23 21:00:39 +00:00
Krzesimir Nowak
36001a9f74 overlay profiles: Add accept keywords for dev-libs/expat 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
7560f9390a overlay profiles: Add accept keywords for sys-firmware/intel-microcode 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
96e56031e4 overlay profiles: Drop accept keywords for sys-apps/util-linux 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
6070b98955 overlay profiles: Update accept keywords for net-libs/gnutls 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
2fe8060c8f overlay profiles: Add accept keywords for dev-python/lxml 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
4218e83673 overlay profiles: Add accept keywords for dev-python/cython 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
dafe499d56 overlay profiles: Drop accept keywords for app-misc/jq 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
d1ff89cd0f overlay profiles: Add accept keywords for net-misc/curl 2024-04-23 17:52:33 +02:00
Krzesimir Nowak
cda76d580c overlay profiles: Add accept keywords for dev-lang/python 2024-04-23 17:52:33 +02:00
Flatcar Buildbot
a93ce615e1 x11-libs/pixman: Sync with Gentoo
It's from Gentoo commit 51eee7179d8992089f833cb6d1ef30559febecff.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
5c52c5d5b6 sys-libs/tevent: Sync with Gentoo
It's from Gentoo commit 8255a1d1e7df73e5f931f9939607f492488cc587.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
a5d0b2fa68 sys-libs/tdb: Sync with Gentoo
It's from Gentoo commit 921d30ebc3f239b4a0ea69f96ec02aeef00dcd37.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
4bbe75f582 sys-libs/talloc: Sync with Gentoo
It's from Gentoo commit 465cf8ab267a953f3e6f44c37c4cfb12fa653803.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
44b1cc5b4c sys-libs/ncurses: Sync with Gentoo
It's from Gentoo commit 7e63eaefbe738901aa916c1a60e8c6b7b0a40d08.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
0ac00d0b2a sys-libs/libseccomp: Sync with Gentoo
It's from Gentoo commit a65ce7b0b71668fb49b960d7259b36eba6ab34cc.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
c2b98caeaf sys-libs/libblockdev: Sync with Gentoo
It's from Gentoo commit 93e52f92e3ec669a9678a1c4a61329791c938fba.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
f34334e724 sys-libs/ldb: Sync with Gentoo
It's from Gentoo commit 3b72be859ea5380720ebf8303c0996a9fc6286bd.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
cda7670060 sys-fs/xfsprogs: Sync with Gentoo
It's from Gentoo commit c073d0c3b74d459d90f786662e44b28203c1131c.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
ec8d8e20a6 sys-fs/udisks: Sync with Gentoo
It's from Gentoo commit 6f60a71de78f3cc30a58b93133149631d75cb7be.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
0009e16d00 sys-fs/fuse: Sync with Gentoo
It's from Gentoo commit efe2ef773c05f4e2fb3fb5fbf4d069938de12489.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
d8ca50ba39 sys-devel/gcc: Sync with Gentoo
It's from Gentoo commit d23d4c93be058cbd86283d9f611c916d9f4edd93.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
fda2cd92b6 sys-apps/util-linux: Sync with Gentoo
It's from Gentoo commit 06528950678f0c2271fdade0d8b6ce5d8a044c8e.
2024-04-23 17:52:33 +02:00
Flatcar Buildbot
d1ed18b048 sys-apps/smartmontools: Sync with Gentoo
It's from Gentoo commit f768f0105f5b9f8ee337105c89e2f6fef2cc8205.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
525a5c1f36 sys-apps/less: Sync with Gentoo
It's from Gentoo commit fab8a934bb5be9b5036d22564797b6db16443401.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
5000321be4 sys-apps/iproute2: Sync with Gentoo
It's from Gentoo commit f0ac63de535b1fa54978114ecc07deb1c2c6c17c.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
c810b65707 sys-apps/file: Sync with Gentoo
It's from Gentoo commit 0dee29492f77aa5e3ebddb75a84cb7364952d5f8.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
38b3f93519 sys-apps/ethtool: Sync with Gentoo
It's from Gentoo commit 40f9fd76602863f4a1a2d61b7ff4d30581ceeb16.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
5621e9c1a0 sys-apps/attr: Sync with Gentoo
It's from Gentoo commit 57880c6b52fc75c94eddf3660ad2d8305c3b1c54.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
77c9bdafa7 sys-apps/acl: Sync with Gentoo
It's from Gentoo commit fbdf516a8bbc0cddbd324dadc0121e0b65b0b22d.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
e475f8ad99 profiles: Sync with Gentoo
It's from Gentoo commit ab0f4fe4f9048e838c98603314bd27c424ca6105.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
97ff04041e net-misc/wget: Sync with Gentoo
It's from Gentoo commit e499bab5e3954a68c5f62be43689aa41244067f9.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
3796acef1b net-misc/iputils: Sync with Gentoo
It's from Gentoo commit b969d0a1de873ef92db0e96b11a6d22f06b29ccc.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
c8bfcd947f net-misc/curl: Sync with Gentoo
It's from Gentoo commit f5be667ab95a32f51f26a4c49c08596da3b0a076.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
51de874281 net-libs/libnftnl: Sync with Gentoo
It's from Gentoo commit 2b9fcc65048f6f6ec13d4c8a89b78cfc200867fe.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
4923b4b318 net-libs/gnutls: Sync with Gentoo
It's from Gentoo commit 71dd0961b35263fb829a03763cd07f8df9a4cd70.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
a7d48a0e19 net-fs/cifs-utils: Sync with Gentoo
It's from Gentoo commit 86243ebae528a9014ef2a3fefa0eb30b5a9ff8dc.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
3d20764f65 net-firewall/ipset: Sync with Gentoo
It's from Gentoo commit 89c5a3663083eee3240424c13040cbd327ddc2c0.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
3ae87cdcdd net-dns/c-ares: Sync with Gentoo
It's from Gentoo commit c11bc88813a82afcb4de5f46f92e977046379d9e.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
0cfe6ca395 media-libs/libpng: Sync with Gentoo
It's from Gentoo commit 1f734a95c0233be05a87a0011c90aa0a14cd1663.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
9abb5d4114 eclass/toolchain: Sync with Gentoo
It's from Gentoo commit 28fca56a1639578fc58de1e8310b7c94a5e12e09.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
df12379571 eclass/rpm: Sync with Gentoo
It's from Gentoo commit 18c07179cce50cda3c99858f419df8f5a755eebe.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
91f2df49e1 eclass/meson: Sync with Gentoo
It's from Gentoo commit afe0521495aeed0a22a3656e7bad193fba39805e.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
afce005187 eclass/eutils: Sync with Gentoo
It's from Gentoo commit a1f28063e0ba2192a120d15fd82a2d59ae10c892.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
18aa6872c8 eclass/distutils-r1: Sync with Gentoo
It's from Gentoo commit 75a308e0686ff3757855e05ff06e9ba7418a0458.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
0a718127f1 dev-util/glib-utils: Sync with Gentoo
It's from Gentoo commit a0259428ed6ba980d3b4744a73612b28f8f9165f.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
f6764d39fe dev-util/gdbus-codegen: Sync with Gentoo
It's from Gentoo commit 6cbad3ecff584aa436aabd8f780f8b157559e4d8.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
d733b20d97 dev-python/typing-extensions: Sync with Gentoo
It's from Gentoo commit 1cee1c4923bfa1314202b8fd322043d5857420c9.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
226c9ac9ac dev-python/trove-classifiers: Sync with Gentoo
It's from Gentoo commit 6bc8a844a12f3d57facbd570163c0c29365003ca.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
7eecce5cb7 dev-python/snakeoil: Sync with Gentoo
It's from Gentoo commit 3584788f0b15147c0065efdc3e2bcc3201e3b60b.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
33bb29dfb6 dev-python/setuptools: Sync with Gentoo
It's from Gentoo commit 2badb61783cef126cad890d1cbd1070af1dd9648.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
b43bad1d3e dev-python/pydecomp: Sync with Gentoo
It's from Gentoo commit 6db4f481e59adfa4beadc4dcbe41e75dd08418a0.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
54c182c440 dev-python/pluggy: Sync with Gentoo
It's from Gentoo commit 58d64b07f5199c3f646be1b07c1e76e91c8f5f77.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
171a5543cd dev-python/lxml: Sync with Gentoo
It's from Gentoo commit 7b5c3fb52c2f01ab03ebbe27073e6c9f0c4edb28.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
645b2123a8 dev-python/jaraco-functools: Sync with Gentoo
It's from Gentoo commit c1f72764c7b320d750448fc8f03ae4219bd5ffaf.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
c4bf5e4301 dev-python/jaraco-context: Sync with Gentoo
It's from Gentoo commit 5703771835d9b2c4a3ecdef353d0584b92cd862e.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
2dbc8b546a dev-python/inflect: Sync with Gentoo
It's from Gentoo commit d7641833d59471770632d1e35751eda3bbfb70aa.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
3285b61c62 dev-python/hatchling: Sync with Gentoo
It's from Gentoo commit 4939e46fecb209737a6bebcf2f98f85ec544d2a0.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
a51bff0b06 dev-python/docutils: Sync with Gentoo
It's from Gentoo commit 13dd8db9617ea3013e152d1be0438117b5357dd9.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
963e45ce24 dev-python/cython: Sync with Gentoo
It's from Gentoo commit cbd6b787782a88b07aae8833bdb2984ba5785488.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
67e3aee39e dev-libs/opensc: Sync with Gentoo
It's from Gentoo commit 52bd0287101df6f20c89dfb6a1bb2d241f6eb3ad.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
c89e33ed34 dev-libs/libuv: Sync with Gentoo
It's from Gentoo commit 4f2af276017530099965ad9a89cdf0341d0246d1.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
c1987dfffc dev-libs/libunistring: Sync with Gentoo
It's from Gentoo commit 019cda3940eab39bdd61cc9f3835b0a3804fe911.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
3b0c2f32c2 dev-libs/libsodium: Sync with Gentoo
It's from Gentoo commit 7e7783fcd2739e5c2423ffe0565e39b10712cca8.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
874f8560b5 dev-libs/libpwquality: Sync with Gentoo
It's from Gentoo commit 54a311eb568400862acf36a6f3c99f7748dbeb22.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
915e4d1ce0 dev-libs/libpcre2: Sync with Gentoo
It's from Gentoo commit 0d71f80b9cce573ec0be53f75d8318ee6e3580aa.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
87aa2985e0 dev-libs/libp11: Sync with Gentoo
It's from Gentoo commit 32e186395feea86d289dc5f5601e334e2f32aff8.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
3036989d4e dev-libs/libaio: Sync with Gentoo
It's from Gentoo commit ccbce26c5a1f962e02f71911d0fe939c1cc0c8e9.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
d98ed58eba dev-libs/jansson: Sync with Gentoo
It's from Gentoo commit b399c14a9af263ff417a9fc1fe22b84b5e49d328.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
5691d47298 dev-libs/glib: Sync with Gentoo
It's from Gentoo commit 39b192fa76b7dab156214144cb71b14df5b0038b.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
0f48758dc0 dev-lang/python-exec-conf: Sync with Gentoo
It's from Gentoo commit d877966562beec31bcd3d5c6b19185bf7dff6650.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
efa045ef86 dev-lang/python-exec: Sync with Gentoo
It's from Gentoo commit 1c9427b0676b68f932a04dd88f48ca276433f7aa.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
9ca13112a0 dev-lang/python: Sync with Gentoo
It's from Gentoo commit 1dc386510db66a586cc128aff28b5dd58ee5e5c7.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
20517e7716 dev-debug/strace: Sync with Gentoo
It's from Gentoo commit 892467328846414e0fb5ef500988098e9cf07ac7.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
e6849ae0f6 dev-db/sqlite: Sync with Gentoo
It's from Gentoo commit f6e367c15ebb29504b01963e8d36f3b64ff280e7.
2024-04-23 17:52:32 +02:00
Flatcar Buildbot
e1bd6caed4 dev-build/ninja: Sync with Gentoo
It's from Gentoo commit d3cec83caf1478a2ac994ac2ca2d149553e61132.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
7e2314b688 dev-build/meson: Sync with Gentoo
It's from Gentoo commit fef20340906d376b9648f2f865a4af27ffeebde0.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
3c3c9da328 dev-build/make: Sync with Gentoo
It's from Gentoo commit 85423df7972767095b2ad59d10b9c44857d74dc8.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
0548dd53dd dev-build/cmake: Sync with Gentoo
It's from Gentoo commit 4fc216074cac93582ebc29089ad7794077dc9ba8.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
93c4fc4aba app-vim/gentoo-syntax: Sync with Gentoo
It's from Gentoo commit 158911870090cfa4d56b3aa6befb09112fe3f1d1.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
82b033a70d app-shells/bash: Sync with Gentoo
It's from Gentoo commit 268b2e7c07d97bd9e833d239d786a0314c3b09ec.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
6c7f160f18 app-portage/portage-utils: Sync with Gentoo
It's from Gentoo commit 8616ac9fa23c6cfb013673c339832fc07b39d6df.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
ba3fec2579 app-portage/elt-patches: Sync with Gentoo
It's from Gentoo commit be0f645743869cc15525bb3eb23269bfe9262fd8.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
caed241b0a app-misc/pax-utils: Sync with Gentoo
It's from Gentoo commit b7ea1f061b451c92ef209f8821a6eae70b97bb9c.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
b7d4aefde1 app-misc/jq: Sync with Gentoo
It's from Gentoo commit 8d64b3da3e2b4f45b6d9d41e68dd6013d1d5a14c.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
5224cf1327 app-crypt/tpm2-tools: Sync with Gentoo
It's from Gentoo commit 6012458803eaa9f9ae7617d26297b3f006c8dfae.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
71d3a8c88d app-crypt/gnupg: Sync with Gentoo
It's from Gentoo commit e2f36a6a5283775f4faf296cee79b64a5288ba2a.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
08fe7eac3a app-crypt/ccid: Sync with Gentoo
It's from Gentoo commit e4661195a13fdf95ad6b9e5e8885cda863118a3e.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
5053741767 app-arch/xz-utils: Sync with Gentoo
It's from Gentoo commit 83a27ac5162cf15e1dca6de92f2debe452024d24.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
6b831e2b8d app-arch/libarchive: Sync with Gentoo
It's from Gentoo commit 62b052e9c730e3786f5b6dff287920f1c4dad12e.
2024-04-23 17:52:31 +02:00
Flatcar Buildbot
7702bf41d4 app-arch/gzip: Sync with Gentoo
It's from Gentoo commit 06b93f3ce0680055df856ecee8a13cc358f05a61.
2024-04-23 17:52:31 +02:00
Eamonn Nugent
28fef7fbbb
Merge branch 'main' into main 2024-04-22 19:40:48 -04:00
Flatcar Buildbot
bfd7a887ae Update mantle container image to latest HEAD 2024-04-22 21:00:44 +00:00
flatcar-ci
65dee77aee New version: main-3948.0.0-nightly-20240422-2100 2024-04-22 21:00:25 +00:00
Krzesimir Nowak
f438b1cae8 overlay sys-apps/systemd: Apply Flatcar modifications 2024-04-22 16:46:44 +02:00
Krzesimir Nowak
85a8599617 sys-apps/systemd: Sync with Gentoo
It's from Gentoo commit 2479e2a834ddc8e79e2a2899ec20269b0b2b2000.
2024-04-22 16:46:44 +02:00
Eamonn Nugent
fdc576a1e2
Merge branch 'main' into main 2024-04-22 09:02:16 -04:00
flatcar-ci
a50161a514 New version: main-3945.0.0-nightly-20240419-2100 2024-04-22 11:25:10 +00:00
Eamonn Nugent
3c5b7256e6 Add CONFIG_PPS_CLIENT_GPIO=m
Closes flatcar/Flatcar:1430
2024-04-22 05:19:06 +00:00
flatcar-ci
e281c1d240 New version: main-3945.0.0-nightly-20240419-2100-INTERMEDIATE 2024-04-19 21:00:27 +00:00
Flatcar Buildbot
99c6370970 Update mantle container image to latest HEAD 2024-04-19 11:36:49 +00:00
Kai Lüke
880e5a2464
Merge pull request #1907 from flatcar/rust-1.77.2-main
Upgrade dev-lang/rust and virtual/rust in main from 1.77.1 to 1.77.2
2024-04-19 05:37:39 +02:00
flatcar-ci
72dc21f6d0 New version: main-3944.0.0-nightly-20240418-2100 2024-04-18 21:00:25 +00:00
Flatcar Buildbot
65e180acb4 dev-lang/rust: Update from 1.77.1 to 1.77.2 2024-04-18 18:46:49 +09:00
Kai Lüke
85133f6429
Merge pull request #1916 from flatcar/kai/drop-patch
dev-lang/rust: Drop alternative patch
2024-04-18 11:44:26 +02:00
Flatcar Buildbot
91546892cd Update mantle container image to latest HEAD 2024-04-17 21:00:43 +00:00
flatcar-ci
660a9b509f New version: main-3943.0.0-nightly-20240417-2100 2024-04-17 21:00:25 +00:00
Mathieu Tortuyaux
0d4031a6d8
Merge pull request #1880 from apricote/hetzner
OEM: Provide Hetzner Images
2024-04-17 15:17:33 +02:00
Flatcar Buildbot
2fda9a86da Update mantle container image to latest HEAD 2024-04-17 10:54:34 +00:00
Kai Lueke
999aa34992 dev-lang/rust: Drop alternative patch
The patch https://github.com/rust-lang/rust/pull/119582 got merged some
releases ago as alternative to the patch
https://github.com/rust-lang/rust/pull/119445 we included in the ebuild
file. We currently use both because the unneeded patch got changed to
apply again but it's not needed and may cause strange behavior.
Therefore, drop the alternative patch.
2024-04-17 15:43:56 +09:00
flatcar-ci
9c91741f3e New version: main-3942.0.0-nightly-20240416-2100 2024-04-16 21:00:35 +00:00
Flatcar Buildbot
16ec409e65 Update mantle container image to latest HEAD 2024-04-16 15:55:49 +00:00
Julian Tölle
1cf9d7f159 coreos-base/coreos-init: Bump commit for Hetzner OEM support 2024-04-16 17:11:44 +02:00
Julian Tölle
e2f6180b47 sys-kernel/bootengine: Bump commit for Hetzner OEM support 2024-04-16 17:10:59 +02:00
Julian Tölle
5ac7c09438 overlay afterburn: enable for Hetzner OEM 2024-04-16 17:08:04 +02:00
Julian Tölle
48c81bc978 oem: provide hetzner images 2024-04-16 17:08:04 +02:00
flatcar-ci
706efd4299 New version: main-3941.0.0-nightly-20240415-2100 2024-04-15 21:00:32 +00:00
Flatcar Buildbot
46f51158b0 Update mantle container image to latest HEAD 2024-04-15 10:06:23 +00:00
flatcar-ci
b36eb2f1f4 New version: main-3938.0.0-nightly-20240412-2100 2024-04-13 02:31:55 +00:00
flatcar-ci
7faae1acc9 New version: main-3938.0.0-nightly-20240412-2100-INTERMEDIATE 2024-04-12 21:00:33 +00:00
Flatcar Buildbot
e3e4ff980f Update mantle container image to latest HEAD 2024-04-12 12:57:32 +00:00
Dongsu Park
05c515b706
Merge pull request #1888 from flatcar/dongsu/ue-rs-20240405
coreos-base/ue-rs: bump h2, mio
2024-04-12 14:57:17 +02:00
Flatcar Buildbot
1f8911b143 Update mantle container image to latest HEAD 2024-04-12 11:54:58 +00:00
Dongsu Park
2d481ddae5
Merge pull request #1886 from flatcar/containerd-1.7.15-main
Upgrade Containerd in main from 1.7.14 to 1.7.15
2024-04-12 13:54:41 +02:00
Dongsu Park
30ec9cc2b8 coreos-base/ue-rs: bump h2, mio
Update to 9b6ddb0226208450bcef9da4ac5ba8bc2a47a87c (2024-04-05), mainly
to address security issues in Rust crates.

Pulls in:
https://github.com/flatcar/ue-rs/pull/51
https://github.com/flatcar/ue-rs/pull/52
https://github.com/flatcar/ue-rs/pull/53
https://github.com/flatcar/ue-rs/pull/54
2024-04-12 11:19:47 +02:00
Kai Lueke
92b8c8f923 coreos-base/coreos-init: Update to latest ref
This pulls in https://github.com/flatcar/init/pull/119 just to have the
latest commit ref. The change is not needed on new Flatcar versions but
for those that download the flatcar-update script from git as raw file.
2024-04-12 17:53:43 +09:00
Flatcar Buildbot
ce925402f2 app-containers/containerd: Update from 1.7.14 to 1.7.15 2024-04-12 08:16:57 +00:00
flatcar-ci
7666320319 New version: main-3937.0.0-nightly-20240411-2100 2024-04-11 21:00:26 +00:00