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:
parent
8f763ee8b1
commit
eed8d293b1
|
@ -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 !!!"
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue