aboutsummaryrefslogtreecommitdiffstats
path: root/meta-baldeagle/recipes-applications/watchdog-test/watchdog-test_1.0.bb
blob: 43d511d01afadc2aae76f0f3370199dfccb0c2a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
DESCRIPTION = "Sample application for AMD Watchdog driver"
SECTION = "applications"
LICENSE = "BSD"
DEPENDS = "readline"
LIC_FILES_CHKSUM = "file://watchdog-test.c;md5=47ff70acbf47e0bf894330dee1143414"

PR = "r1"
PV = "1.0"

SRC_URI = "file://watchdog-test.c"

S = "${WORKDIR}"

TARGET_CC_ARCH += "${LDFLAGS}"

do_compile() {
	${CC} watchdog-test.c -o watchdog-test -lreadline
}

do_install() {
	install -d ${D}${bindir}
	install -m 0755 watchdog-test ${D}${bindir}
}