kernel-dev: join mkdir commands with -p

To make it more obvious which directories are needed, pass only these to
*mkdir* and use the option `-p` to create the missing parents.

(From yocto-docs rev: 92806d2ab1f909eef9ccc532958a7ced6262b9b0)

Signed-off-by: Jörg Sommer <joerg.sommer@navimatix.de>
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Jörg Sommer
2024-04-05 12:14:20 +02:00
committed by Richard Purdie
parent 88f04994ef
commit c0b4eff954

View File

@@ -315,11 +315,7 @@ home directory:
#. *Create Structure*: Create the layer's structure:: #. *Create Structure*: Create the layer's structure::
$ mkdir meta-mylayer $ mkdir -p meta-mylayer/conf meta-mylayer/recipes-kernel/linux/linux-yocto
$ mkdir meta-mylayer/conf
$ mkdir meta-mylayer/recipes-kernel
$ mkdir meta-mylayer/recipes-kernel/linux
$ mkdir meta-mylayer/recipes-kernel/linux/linux-yocto
The ``conf`` directory holds your configuration files, while the The ``conf`` directory holds your configuration files, while the
``recipes-kernel`` directory holds your append file and eventual ``recipes-kernel`` directory holds your append file and eventual
@@ -964,9 +960,7 @@ Section.
additional structure to your layer using the following commands:: additional structure to your layer using the following commands::
$ cd ~/meta-mylayer $ cd ~/meta-mylayer
$ mkdir recipes-kernel $ mkdir -p recipes-kernel recipes-kernel/linux/linux-yocto
$ mkdir recipes-kernel/linux
$ mkdir recipes-kernel/linux/linux-yocto
Once you have created this Once you have created this
hierarchy in your layer, you can move the patch file using the hierarchy in your layer, you can move the patch file using the