From ac935913dd35abf7c93bcc5501ade9ff28029068 Mon Sep 17 00:00:00 2001 From: Andrey Utkin Date: Fri, 6 Dec 2019 14:29:47 +0000 Subject: [PATCH] README: fix overlays copying command 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. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2b53afd..eda2180 100644 --- a/README.md +++ b/README.md @@ -648,7 +648,7 @@ pi64 linux # cp -v arch/arm64/boot/dts/broadcom/bcm2710-rpi-cm3.dtb /boot/ Then, copy across the device tree overlay blobs (these are now the responsibility of the kernel, not the boot firmware, package, so it is essential you add them): ```console -pi64 linux # cp -rv arch/arm64/boot/dts/overlays /boot/ +pi64 linux # cp -rv arch/arm64/boot/dts/overlays/ /boot/ ``` Lastly, install the modules: