From 29e35284758b2d976ffa36e0d79237fd9f4463dd Mon Sep 17 00:00:00 2001 From: Patrick Venture Date: Wed, 10 Apr 2019 07:34:36 -0700 Subject: meta-quanta: q71l: powerctrl: install scripts in bin Install the power control shell scripts into bin instead of sbin. These control power for the host, not the BMC. (From meta-quanta rev: 77c5f7af4311516e393cda73db75c907acd1171d) Signed-off-by: Patrick Venture Change-Id: I5294196516d458d6bbf930a287e42ceea1bc88e2 Signed-off-by: Brad Bishop --- .../recipes-phosphor/quanta-powerctrl/quanta-powerctrl.bb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'meta-quanta') diff --git a/meta-quanta/meta-q71l/recipes-phosphor/quanta-powerctrl/quanta-powerctrl.bb b/meta-quanta/meta-q71l/recipes-phosphor/quanta-powerctrl/quanta-powerctrl.bb index 940b72d3f..f6f6458bf 100644 --- a/meta-quanta/meta-q71l/recipes-phosphor/quanta-powerctrl/quanta-powerctrl.bb +++ b/meta-quanta/meta-q71l/recipes-phosphor/quanta-powerctrl/quanta-powerctrl.bb @@ -21,8 +21,8 @@ SYSTEMD_PACKAGES = "${PN}" SYSTEMD_SERVICE_${PN} = "host-gpio.service host-poweron.service host-poweroff.service" do_install() { - install -d ${D}/usr/sbin - install -m 0755 ${S}init_once.sh ${D}/${sbindir}/ - install -m 0755 ${S}poweroff.sh ${D}/${sbindir}/ - install -m 0755 ${S}poweron.sh ${D}/${sbindir}/ + install -d ${D}/${bindir} + install -m 0755 ${S}init_once.sh ${D}/${bindir}/ + install -m 0755 ${S}poweroff.sh ${D}/${bindir}/ + install -m 0755 ${S}poweron.sh ${D}/${bindir}/ } -- cgit v1.2.1