From: Matt Turner <[email protected]>
Previously, update_seed caused the seed stage to be updated with
--update --deep --newuse @world. This proved to be unnecessary in the
majority of cases.
Simply give run_merge the previously unused argument of update_seed as
an argument list. This allows updating select packages in a seed stage.
---
targets/stage1/stage1-chroot.sh | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh
index a9536a6..377a7cf 100644
--- a/targets/stage1/stage1-chroot.sh
+++ b/targets/stage1/stage1-chroot.sh
@@ -24,7 +24,7 @@ clst_root_path=/ setup_pkgmgr
# Update stage3
if [ -n "${clst_update_seed_cache}" ]; then
echo "Updating seed stage..."
- clst_root_path=/ run_merge "--update --deep --newuse @world"
+ clst_root_path=/ run_merge "${clst_update_seed_cache}"
else
echo "Skipping seed stage update..."
fi
--
1.7.8.6