Use different rsync options for boot and root

When copying files to boot, options that are not supported on fat32 can cause errors. For example owner, group and xattrs.
pull/261/head
Sam Tygier 2019-02-17 15:29:10 +00:00
parent 5f3ddb2531
commit 1c9df06fc3
1 changed files with 2 additions and 1 deletions

View File

@ -66,4 +66,5 @@ mount -v "$ROOT_DEV" "${ROOTFS_DIR}" -t ext4
mkdir -p "${ROOTFS_DIR}/boot"
mount -v "$BOOT_DEV" "${ROOTFS_DIR}/boot" -t vfat
rsync -aHAXx --exclude var/cache/apt/archives "${EXPORT_ROOTFS_DIR}/" "${ROOTFS_DIR}/"
rsync -aHAXx --exclude /var/cache/apt/archives --exclude /boot "${EXPORT_ROOTFS_DIR}/" "${ROOTFS_DIR}/"
rsync -rtx "${EXPORT_ROOTFS_DIR}/boot/" "${ROOTFS_DIR}/boot/"