From ecd2fc70fdd69e5e75e1f5cdee352fe58a3a3dec Mon Sep 17 00:00:00 2001 From: Laurian Iacob <91423981+iLaurian@users.noreply.github.com> Date: Sat, 15 Nov 2025 14:45:54 +0200 Subject: [PATCH] Modify copy command to not include folder Updated the copy command to include all files in the install directory, but not the folder itself. --- docs/linux_kernel_development/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/linux_kernel_development/index.mdx b/docs/linux_kernel_development/index.mdx index 5b148e0..d986784 100644 --- a/docs/linux_kernel_development/index.mdx +++ b/docs/linux_kernel_development/index.mdx @@ -654,7 +654,7 @@ We will instruct BusyBox to install all the links at boot time. If you want to a them at boot, you can copy all the links using ```shell -$ cp -r _install/ $INIT_RAM_FS/ +$ cp -r _install/* $INIT_RAM_FS/ ``` :::