rsync single file system

If proc is mounted in rootfs (e.g., via chroot), rsync will try copying kcore
when permitted to cross file system boundaries.
pull/25/head
chz 2016-10-09 14:00:39 -07:00
parent d1f766d2b8
commit bc4a254b81
2 changed files with 2 additions and 2 deletions

View File

@ -45,4 +45,4 @@ mount -v $ROOT_DEV ${ROOTFS_DIR} -t ext4
mkdir -p ${ROOTFS_DIR}/boot
mount -v $BOOT_DEV ${ROOTFS_DIR}/boot -t vfat
rsync ${EXPORT_ROOTFS_DIR}/ ${ROOTFS_DIR}/ -aHAX
rsync -aHAXx ${EXPORT_ROOTFS_DIR}/ ${ROOTFS_DIR}/

View File

@ -27,7 +27,7 @@ copy_previous(){
false
fi
mkdir -p ${ROOTFS_DIR}
rsync -aHAX ${PREV_ROOTFS_DIR}/ ${ROOTFS_DIR}/
rsync -aHAXx ${PREV_ROOTFS_DIR}/ ${ROOTFS_DIR}/
}
export -f copy_previous