diff options
-rwxr-xr-x | 2_install.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/2_install.sh b/2_install.sh index 3d63ba3..879e171 100755 --- a/2_install.sh +++ b/2_install.sh @@ -33,6 +33,9 @@ if [ "$ROOTFS" = "isofs" ]; then else mount "$rootdev_host" "$mountpoint" rsync -aH "$targettemp/" "${mountpoint%/}" + for addon in $addons; do + rsync -aH "./addons/$addon/" "${mountpoint%/}" + done umount "$mountpoint" # [ -n "$bootdev_host" ] && umount "$mountpoint/boot" || true fi |