diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-07-28 23:28:15 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-08-02 15:44:10 +0100 |
commit | bb6ddc3691ab04162ec5fd69a2d5e7876713fd15 (patch) | |
tree | 76e376b01253c3aace1a98a5021bcaad3c92e861 /meta/recipes-support/rng-tools | |
parent | fcc456ee4b8f619134abb4649db53c638074082c (diff) | |
download | poky-bb6ddc3691ab04162ec5fd69a2d5e7876713fd15.tar.gz |
Convert to new override syntax
This is the result of automated script conversion:
scripts/contrib/convert-overrides.py <oe-core directory>
converting the metadata to use ":" as the override character instead of "_".
(From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/rng-tools')
-rw-r--r-- | meta/recipes-support/rng-tools/rng-tools_6.13.bb | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools_6.13.bb b/meta/recipes-support/rng-tools/rng-tools_6.13.bb index fb2fd63c5d..84dbc76855 100644 --- a/meta/recipes-support/rng-tools/rng-tools_6.13.bb +++ b/meta/recipes-support/rng-tools/rng-tools_6.13.bb | |||
@@ -23,7 +23,7 @@ inherit autotools update-rc.d systemd pkgconfig | |||
23 | EXTRA_OECONF = "--without-rtlsdr" | 23 | EXTRA_OECONF = "--without-rtlsdr" |
24 | 24 | ||
25 | PACKAGECONFIG ??= "libjitterentropy" | 25 | PACKAGECONFIG ??= "libjitterentropy" |
26 | PACKAGECONFIG_libc-musl = "libargp libjitterentropy" | 26 | PACKAGECONFIG:libc-musl = "libargp libjitterentropy" |
27 | 27 | ||
28 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," | 28 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," |
29 | PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy" | 29 | PACKAGECONFIG[libjitterentropy] = "--enable-jitterentropy,--disable-jitterentropy,libjitterentropy" |
@@ -33,14 +33,14 @@ PACKAGECONFIG[nistbeacon] = "--with-nistbeacon,--without-nistbeacon,curl libxml2 | |||
33 | INITSCRIPT_NAME = "rng-tools" | 33 | INITSCRIPT_NAME = "rng-tools" |
34 | INITSCRIPT_PARAMS = "start 03 2 3 4 5 . stop 30 0 6 1 ." | 34 | INITSCRIPT_PARAMS = "start 03 2 3 4 5 . stop 30 0 6 1 ." |
35 | 35 | ||
36 | SYSTEMD_SERVICE_${PN} = "rngd.service" | 36 | SYSTEMD_SERVICE:${PN} = "rngd.service" |
37 | 37 | ||
38 | # Refer autogen.sh in rng-tools | 38 | # Refer autogen.sh in rng-tools |
39 | do_configure_prepend() { | 39 | do_configure:prepend() { |
40 | cp ${S}/README.md ${S}/README | 40 | cp ${S}/README.md ${S}/README |
41 | } | 41 | } |
42 | 42 | ||
43 | do_install_append() { | 43 | do_install:append() { |
44 | install -Dm 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/rng-tools | 44 | install -Dm 0644 ${WORKDIR}/default ${D}${sysconfdir}/default/rng-tools |
45 | install -Dm 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rng-tools | 45 | install -Dm 0755 ${WORKDIR}/init ${D}${sysconfdir}/init.d/rng-tools |
46 | install -Dm 0644 ${WORKDIR}/rngd.service \ | 46 | install -Dm 0644 ${WORKDIR}/rngd.service \ |