diff options
Diffstat (limited to 'meta/recipes-extended/watchdog/watchdog_5.15.bb')
-rw-r--r-- | meta/recipes-extended/watchdog/watchdog_5.15.bb | 23 |
1 files changed, 20 insertions, 3 deletions
diff --git a/meta/recipes-extended/watchdog/watchdog_5.15.bb b/meta/recipes-extended/watchdog/watchdog_5.15.bb index ee1a8933ef..1c0049c7af 100644 --- a/meta/recipes-extended/watchdog/watchdog_5.15.bb +++ b/meta/recipes-extended/watchdog/watchdog_5.15.bb | |||
@@ -12,6 +12,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/watchdog/watchdog-${PV}.tar.gz \ | |||
12 | file://0001-Include-linux-param.h-for-EXEC_PAGESIZE-definition.patch \ | 12 | file://0001-Include-linux-param.h-for-EXEC_PAGESIZE-definition.patch \ |
13 | file://watchdog-init.patch \ | 13 | file://watchdog-init.patch \ |
14 | file://watchdog-conf.patch \ | 14 | file://watchdog-conf.patch \ |
15 | file://wd_keepalive.init \ | ||
15 | " | 16 | " |
16 | 17 | ||
17 | SRC_URI[md5sum] = "678c32f6f35a0492c9c1b76b4aa88828" | 18 | SRC_URI[md5sum] = "678c32f6f35a0492c9c1b76b4aa88828" |
@@ -28,11 +29,27 @@ CFLAGS_append_libc-musl = " -I${STAGING_INCDIR}/tirpc " | |||
28 | LDFLAGS_append_libc-musl = " -ltirpc " | 29 | LDFLAGS_append_libc-musl = " -ltirpc " |
29 | EXTRA_OECONF_append_libc-musl = " --disable-nfs " | 30 | EXTRA_OECONF_append_libc-musl = " --disable-nfs " |
30 | 31 | ||
31 | INITSCRIPT_NAME = "watchdog.sh" | 32 | INITSCRIPT_PACKAGES = "${PN} ${PN}-keepalive" |
32 | INITSCRIPT_PARAMS = "start 15 1 2 3 4 5 . stop 85 0 6 ." | ||
33 | 33 | ||
34 | RRECOMMENDS_${PN} = "kernel-module-softdog" | 34 | INITSCRIPT_NAME_${PN} = "watchdog.sh" |
35 | INITSCRIPT_PARAMS_${PN} = "start 15 1 2 3 4 5 . stop 85 0 6 ." | ||
36 | |||
37 | INITSCRIPT_NAME_${PN}-keepalive = "wd_keepalive" | ||
38 | INITSCRIPT_PARAMS_${PN}-keepalive = "start 15 1 2 3 4 5 . stop 85 0 6 ." | ||
35 | 39 | ||
36 | do_install_append() { | 40 | do_install_append() { |
37 | install -D ${S}/redhat/watchdog.init ${D}/${sysconfdir}/init.d/watchdog.sh | 41 | install -D ${S}/redhat/watchdog.init ${D}/${sysconfdir}/init.d/watchdog.sh |
42 | install -Dm 0755 ${WORKDIR}/wd_keepalive.init ${D}${sysconfdir}/init.d/wd_keepalive | ||
38 | } | 43 | } |
44 | |||
45 | PACKAGES =+ "${PN}-keepalive" | ||
46 | |||
47 | FILES_${PN}-keepalive = " \ | ||
48 | ${sysconfdir}/init.d/wd_keepalive \ | ||
49 | ${sbindir}/wd_keepalive \ | ||
50 | " | ||
51 | |||
52 | RDEPENDS_${PN} += "${PN}-keepalive" | ||
53 | |||
54 | RRECOMMENDS_${PN} = "kernel-module-softdog" | ||
55 | |||