33 lines
1.0 KiB
BlitzBasic
33 lines
1.0 KiB
BlitzBasic
SUMMARY = "Phosphor OpenBMC Mt.Jade Platform Init Service"
|
|
DESCRIPTION = "Phosphor OpenBMC Mt.Jade Platform Init Daemon"
|
|
|
|
PR = "r1"
|
|
LICENSE = "Apache-2.0"
|
|
LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
|
|
|
|
inherit systemd
|
|
inherit obmc-phosphor-systemd
|
|
|
|
DEPENDS += "systemd"
|
|
RDEPENDS:${PN} += "libsystemd"
|
|
RDEPENDS:${PN} += "bash"
|
|
|
|
SRC_URI = " \
|
|
file://ampere_platform_init.sh \
|
|
file://ampere_uart_console_setup.sh \
|
|
file://ampere_uartmux_ctrl.sh \
|
|
file://ampere-platform-init.service \
|
|
"
|
|
|
|
SYSTEMD_PACKAGES = "${PN}"
|
|
SYSTEMD_SERVICE:${PN} = "ampere-platform-init.service"
|
|
|
|
do_install () {
|
|
install -d ${D}${sbindir}
|
|
install -m 0755 ${WORKDIR}/ampere_platform_init.sh ${D}${sbindir}/
|
|
install -m 0755 ${WORKDIR}/ampere_uart_console_setup.sh ${D}${sbindir}/
|
|
install -m 0755 ${WORKDIR}/ampere_uartmux_ctrl.sh ${D}/${sbindir}/
|
|
install -d ${D}${systemd_unitdir}/system/
|
|
install -m 0644 ${WORKDIR}/ampere-platform-init.service ${D}${systemd_unitdir}/system
|
|
}
|