From 84a195436caa55bd99a594fc068aedb26045167e Mon Sep 17 00:00:00 2001 From: James Le Cuirot Date: Wed, 15 Apr 2026 12:14:30 +0100 Subject: [PATCH] update_chroot: Fix /etc/portage/patches symlink This was accidentally broken by #3795. I took that change from a branch where the `COREOS_OVERLAY` variable was no longer used at all. Signed-off-by: James Le Cuirot --- update_chroot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_chroot b/update_chroot index b3dfdfe638..d07198f8ba 100755 --- a/update_chroot +++ b/update_chroot @@ -80,7 +80,7 @@ info "Setting up portage..." sudo mkdir -p "${REPO_CACHE_DIR}/distfiles" sudo chown "${PORTAGE_USERNAME}:portage" "${REPO_CACHE_DIR}/distfiles" sudo mkdir -p /etc/portage/repos.conf /var/lib/portage/pkgs -sudo ln -sfT "${COREOS_OVERLAY}/coreos/user-patches" '/etc/portage/patches' +sudo ln -sfT "${REPO_ROOT}/src/third_party/coreos-overlay/coreos/user-patches" /etc/portage/patches sudo touch /etc/portage/make.conf.user sudo_clobber "/etc/portage/make.conf" <