xref: /OK3568_Linux_fs/yocto/poky/meta/recipes-extended/watchdog/watchdog-config.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1*4882a593SmuzhiyunSUMMARY = "Software watchdog"
2*4882a593SmuzhiyunDESCRIPTION = "Watchdog is a daemon that checks if your system is still \
3*4882a593Smuzhiyunworking. If programs in user space are not longer executed it will reboot \
4*4882a593Smuzhiyunthe system."
5*4882a593SmuzhiyunHOMEPAGE = "http://watchdog.sourceforge.net/"
6*4882a593SmuzhiyunBUGTRACKER = "http://sourceforge.net/tracker/?group_id=172030&atid=860194"
7*4882a593Smuzhiyun
8*4882a593SmuzhiyunLICENSE = "MIT"
9*4882a593SmuzhiyunLIC_FILES_CHKSUM = "file://${COREBASE}/meta/COPYING.MIT;md5=3da9cfbcb788c80a0384361b4de20420"
10*4882a593Smuzhiyun
11*4882a593SmuzhiyunSRC_URI = " \
12*4882a593Smuzhiyun    file://watchdog.default \
13*4882a593Smuzhiyun    file://watchdog.conf \
14*4882a593Smuzhiyun"
15*4882a593Smuzhiyun
16*4882a593Smuzhiyundo_install() {
17*4882a593Smuzhiyun    install -Dm 0644 ${WORKDIR}/watchdog.default ${D}${sysconfdir}/default/watchdog
18*4882a593Smuzhiyun    install -Dm 0644 ${WORKDIR}/watchdog.conf ${D}${sysconfdir}/watchdog.conf
19*4882a593Smuzhiyun}
20*4882a593Smuzhiyun
21