diff options
Diffstat (limited to 'libvasile')
-rwxr-xr-x | libvasile | 12 |
1 files changed, 12 insertions, 0 deletions
@@ -103,6 +103,12 @@ chrootstartx64 () { mount -t tmpfs -o nosuid,nodev,noexec none "$overlaydir"/tmp } +chroottreex64 () { + echo "injecting full portage tree into x64 environment" + sleep 1 + chroot "$overlaydir" su - "$chrootuser" -c "$chroottree" +} + chrootoverlaysx64 () { echo "injecting "$releasename" "$releasetarget" overlay into x64 environment" sleep 1 @@ -163,6 +169,12 @@ chrootstartx86 () { mount -t tmpfs -o nosuid,nodev,noexec none "$overlaydir"/tmp } +chrottreex86 () { + echo "injecting full portage tree into x86 environment" + sleep 1 + linux32 chroot "$overlaydir" su - "$chrootuser" -c "$chroottree" +} + chrootoverlaysx86 () { echo "injecting "$releasename" "$releasetarget" overlay into x86 environment" sleep 1 |