2024-09-09 08:57:42 +00:00
|
|
|
inherit autotools-brokensep module update-rc.d
|
|
|
|
DESCRIPTION = "Shortcut Forward Engine Driver"
|
|
|
|
LICENSE = "ISC"
|
|
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/${LICENSE};md5=f3b90e78ea0cffb20bf5cca7947a896d"
|
|
|
|
|
|
|
|
FILESPATH =+ "${WORKSPACE}:"
|
|
|
|
SRC_URI = "file://shortcut-fe/shortcut-fe/ \
|
|
|
|
file://start_shortcut_fe_le "
|
|
|
|
|
|
|
|
S = "${WORKDIR}/shortcut-fe/shortcut-fe"
|
|
|
|
|
|
|
|
FILES_${PN}="/etc/init.d/start_shortcut_fe_le"
|
|
|
|
|
2024-09-09 08:59:52 +00:00
|
|
|
EXTRA_OEMAKE += "${@base_conditional('TP_FEATURE_CLOUD', 'y', 'EXTRA_CFLAGS+=-DTP_FEATURE_CLOUD', '', d)}"
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
do_install() {
|
|
|
|
module_do_install
|
|
|
|
install -d ${D}${sysconfdir}/init.d
|
|
|
|
install -m 0755 ${WORKDIR}/start_shortcut_fe_le ${D}${sysconfdir}/init.d
|
|
|
|
}
|
|
|
|
|
|
|
|
INITSCRIPT_NAME = "start_shortcut_fe_le"
|
|
|
|
INITSCRIPT_PARAMS = "start 91 5 . stop 15 0 1 6 ."
|
|
|
|
|
|
|
|
|