Bugfix: Do not copy the content of e.g. /dev/shm when creating hdd

images

Discovered when building with '--binary-image hdd' on /dev/shm
This commit is contained in:
Roland Clobus 2022-01-08 10:26:48 +01:00
parent 8f763ee8b1
commit eed8d293b1
No known key found for this signature in database
GPG Key ID: 62C57C6AA61495BD
2 changed files with 4 additions and 2 deletions

View File

@ -143,7 +143,8 @@ then
MAKEDEV=true
mv chroot/dev chroot/dev.tmp
find /dev | cpio -dmpu chroot
# Don't copy mount points (e.g. /dev/shm)
find /dev -xdev | cpio -dmpu chroot
fi
echo "!!! The following error/warning messages can be ignored !!!"

View File

@ -67,7 +67,8 @@ then
MAKEDEV=true
mv chroot/dev chroot/dev.tmp
find /dev | cpio -dmpu chroot
# Don't copy mount points (e.g. /dev/shm)
find /dev -xdev| cpio -dmpu chroot
fi
case "${LB_BINARY_FILESYSTEM}" in