15 lines
387 B
Plaintext
15 lines
387 B
Plaintext
|
|
FILESEXTRAPATHS:append := "${THISDIR}/${PN}:"
|
||
|
|
|
||
|
|
RDEPENDS:${PN} = "bash"
|
||
|
|
|
||
|
|
SRC_URI += " \
|
||
|
|
file://ampere_fault_monitor.sh \
|
||
|
|
file://ampere_check_gpio_fault.sh \
|
||
|
|
"
|
||
|
|
|
||
|
|
do_install() {
|
||
|
|
install -d ${D}/${sbindir}
|
||
|
|
install -m 755 ${WORKDIR}/ampere_fault_monitor.sh ${D}/${sbindir}/
|
||
|
|
install -m 755 ${WORKDIR}/ampere_check_gpio_fault.sh ${D}/${sbindir}/
|
||
|
|
}
|