[oe] [meta-oe][PATCH] edac-utils: add systemd init script for edac

Dengke Du dengke.du at windriver.com
Wed Sep 28 08:30:12 UTC 2016


Please ignore!

Thanks

//Dengke


On 2016年09月28日 15:44, Dengke Du wrote:
> In order to add the systemd init script for edac, we need to add
> some perl module to make sure the correct startup.
>
> (LOCAL REV: NOT UPSTREAM) -- Send to meta-openembedded 20160928
>
> Signed-off-by: Dengke Du <dengke.du at windriver.com>
> ---
>   meta-oe/recipes-support/edac-utils/edac-utils_git.bb  | 14 +++++++++++++-
>   meta-oe/recipes-support/edac-utils/files/edac.service | 11 +++++++++++
>   2 files changed, 24 insertions(+), 1 deletion(-)
>   create mode 100644 meta-oe/recipes-support/edac-utils/files/edac.service
>
> diff --git a/meta-oe/recipes-support/edac-utils/edac-utils_git.bb b/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
> index c0ad665..b3ff1cc 100644
> --- a/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
> +++ b/meta-oe/recipes-support/edac-utils/edac-utils_git.bb
> @@ -14,9 +14,10 @@ S = "${WORKDIR}/git"
>   SRC_URI = "git://github.com/grondo/edac-utils \
>       file://make-init-script-be-able-to-automatically-load-EDAC-.patch \
>       file://add-restart-to-initscript.patch \
> +    file://edac.service \
>   "
>   
> -inherit autotools-brokensep
> +inherit autotools-brokensep systemd
>   
>   do_configure_prepend () {
>       touch ${S}/ChangeLog
> @@ -31,4 +32,15 @@ RDEPENDS_${PN}_powerpc = "dmidecode"
>   RDEPENDS_${PN}_powerpc64 = "dmidecode"
>   RDEPENDS_${PN}_append = " \
>       perl-module-file-basename perl-module-file-find perl-module-getopt-long perl-module-posix \
> +    perl-module-overload \
> +    perl-module-overloading \
> +    perl-module-file-glob \
>   "
> +
> +do_install_append() {
> +	install -d ${D}${systemd_unitdir}/system
> +	install -m 644 ${WORKDIR}/edac.service ${D}/${systemd_unitdir}/system
> +	sed -i -e 's, at SBINDIR@,${sbindir},g' ${D}/${systemd_unitdir}/system/edac.service
> +}
> +
> +SYSTEMD_SERVICE_${PN} = "edac.service"
> diff --git a/meta-oe/recipes-support/edac-utils/files/edac.service b/meta-oe/recipes-support/edac-utils/files/edac.service
> new file mode 100644
> index 0000000..9f687a8
> --- /dev/null
> +++ b/meta-oe/recipes-support/edac-utils/files/edac.service
> @@ -0,0 +1,11 @@
> +[Unit]
> +Description=Initialize EDAC Drivers For Machine Hardware
> +
> +[Service]
> +Type=oneshot
> +ExecStart=@SBINDIR@/edac-ctl --register-labels
> +ExecStop=@SBINDIR@/edac-ctl --unload
> +RemainAfterExit=yes
> +
> +[Install]
> +WantedBy=multi-user.target




More information about the Openembedded-devel mailing list