mirror of
git://git.yoctoproject.org/poky.git
synced 2025-07-19 21:09:03 +02:00
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:
parent
88f04994ef
commit
c0b4eff954
|
@ -315,11 +315,7 @@ home directory:
|
|||
|
||||
#. *Create Structure*: Create the layer's structure::
|
||||
|
||||
$ mkdir meta-mylayer
|
||||
$ mkdir meta-mylayer/conf
|
||||
$ mkdir meta-mylayer/recipes-kernel
|
||||
$ mkdir meta-mylayer/recipes-kernel/linux
|
||||
$ mkdir meta-mylayer/recipes-kernel/linux/linux-yocto
|
||||
$ mkdir -p meta-mylayer/conf meta-mylayer/recipes-kernel/linux/linux-yocto
|
||||
|
||||
The ``conf`` directory holds your configuration files, while the
|
||||
``recipes-kernel`` directory holds your append file and eventual
|
||||
|
@ -964,9 +960,7 @@ Section.
|
|||
additional structure to your layer using the following commands::
|
||||
|
||||
$ cd ~/meta-mylayer
|
||||
$ mkdir recipes-kernel
|
||||
$ mkdir recipes-kernel/linux
|
||||
$ mkdir recipes-kernel/linux/linux-yocto
|
||||
$ mkdir -p recipes-kernel recipes-kernel/linux/linux-yocto
|
||||
|
||||
Once you have created this
|
||||
hierarchy in your layer, you can move the patch file using the
|
||||
|
|
Loading…
Reference in New Issue
Block a user