Closed andrey-utkin closed 4 years ago
The original command fails because the path used is a symlink, and /boot is FAT filesystem which doesn't support symlinks:
cp -rv arch/arm64/boot/dts/overlays /boot/boo 'arch/arm64/boot/dts/overlays' -> '/boot/boo' cp: cannot create symbolic link '/boot/boo': Operation not permitted
Appending a slash to the source path causes the symlink to be resolved rather than used intact.
Many thanks ^-^ sakaki
The original command fails because the path used is a symlink, and /boot is FAT filesystem which doesn't support symlinks:
Appending a slash to the source path causes the symlink to be resolved rather than used intact.