export-noobs: use bsdtar

pull/35/head
Serge Schneider 2016-11-21 18:00:51 +00:00
parent c4fb032d3b
commit 09590eba4a
2 changed files with 3 additions and 2 deletions

View File

@ -5,3 +5,4 @@ kpartx zerofree
pxz zip
mkdosfs:dosfstools
capsh:libcap2-bin
bsdtar

View File

@ -19,7 +19,7 @@ mkdir -p ${NOOBS_DIR}
mount $ROOT_DEV ${STAGE_WORK_DIR}/rootfs
mount $BOOT_DEV ${STAGE_WORK_DIR}/rootfs/boot
tar -I pxz -C ${STAGE_WORK_DIR}/rootfs/boot -cpf ${NOOBS_DIR}/boot.tar.xz .
tar -I pxz -C ${STAGE_WORK_DIR}/rootfs --one-file-system -cpf ${NOOBS_DIR}/root.tar.xz .
bsdtar --use-compress-program pxz -C ${STAGE_WORK_DIR}/rootfs/boot -cpf ${NOOBS_DIR}/boot.tar.xz .
bsdtar --use-compress-program pxz -C ${STAGE_WORK_DIR}/rootfs --one-file-system -cpf ${NOOBS_DIR}/root.tar.xz .
unmount_image ${IMG_FILE}