diff options
| author | Armin Kuster <akuster808@gmail.com> | 2022-05-02 07:33:39 -0700 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2022-05-02 17:51:58 -0700 |
| commit | 5501e231b888996b52f3fbb6a0148d4326e86b3f (patch) | |
| tree | e25e851393e8fe8665e2ce1f09bec9dc39266d45 /meta-oe | |
| parent | 32160a06de6c076918bb748fd943bbfc724b4f59 (diff) | |
| download | meta-openembedded-5501e231b888996b52f3fbb6a0148d4326e86b3f.tar.gz | |
nvmetcli: move recipe to meta-oe
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe')
| -rw-r--r-- | meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.7.bb | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.7.bb b/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.7.bb new file mode 100644 index 0000000000..ec483321b6 --- /dev/null +++ b/meta-oe/dynamic-layers/meta-python/recipes-support/nvmetcli/nvmetcli_0.7.bb | |||
| @@ -0,0 +1,39 @@ | |||
| 1 | SUMMARY = "NVM-Express target user space configuration utility." | ||
| 2 | DESCRIPTION = "This package contains the command line interface to the NVMe \ | ||
| 3 | over Fabrics nvmet in the Linux kernel. It allows configuring the nvmet \ | ||
| 4 | interactively as well as saving / restoring the configuration to / from a json \ | ||
| 5 | file." | ||
| 6 | LICENSE = "Apache-2.0" | ||
| 7 | LIC_FILES_CHKSUM = "file://COPYING;md5=1dece7821bf3fd70fe1309eaa37d52a2" | ||
| 8 | |||
| 9 | inherit systemd setuptools3 | ||
| 10 | |||
| 11 | # nvmet service will start and stop the NVMe Target configuration on boot and | ||
| 12 | # shutdown from a saved NVMe Target configuration in the /etc/nvmet/config.json | ||
| 13 | # file. This file is not installed by default since the configuration will vary | ||
| 14 | # on real systems. Example configuration files are provided by including the | ||
| 15 | # nvmetcli-examples package. | ||
| 16 | SYSTEMD_SERVICE:${PN} = "nvmet.service" | ||
| 17 | |||
| 18 | SYSTEMD_AUTO_ENABLE ?= "disable" | ||
| 19 | |||
| 20 | RDEPENDS:${PN} += "python3 python3-six python3-pyparsing python3-configshell-fb" | ||
| 21 | |||
| 22 | SRCREV = "0a6b088db2dc2e5de11e6f23f1e890e4b54fee64" | ||
| 23 | SRC_URI = "git://git.infradead.org/users/hch/nvmetcli.git;branch=master" | ||
| 24 | |||
| 25 | S = "${WORKDIR}/git" | ||
| 26 | |||
| 27 | do_install:append() { | ||
| 28 | # Install example configuration scripts. | ||
| 29 | install -d ${D}${datadir}/nvmet | ||
| 30 | cp -fr ${S}/examples ${D}${datadir}/nvmet/ | ||
| 31 | |||
| 32 | # Install systemd service file. | ||
| 33 | install -d ${D}${systemd_unitdir}/system | ||
| 34 | cp -fr ${S}/nvmet.service ${D}${systemd_unitdir}/system | ||
| 35 | } | ||
| 36 | |||
| 37 | # Examples package contains example json files used to configure nvmet. | ||
| 38 | PACKAGES += "${PN}-examples" | ||
| 39 | FILES:${PN}-examples = "${datadir}/nvmet/examples/*" | ||
