meta-freescale-distro/recipes-fsl/fsl-rc-local/fsl-rc-local.bb
Max Krummenacher 4e56708704 layerwide: updates for WORKDIR/UNPACKDIR and git fetch location
The series [1] changed the way sources are fetched/unpacked and
S needs to follow that.

This lead to some recipe making even parse fail.

As walnascar is no longer compatible with master/whinlatter drop
it from LAYERSERIES_COMPAT.

[1] https://lore.kernel.org/openembedded-core/20250616095000.2918921-1-alex.kanavin@gmail.com/

Signed-off-by: Max Krummenacher <max.krummenacher@toradex.com>
2025-06-30 08:29:45 -03:00

24 lines
601 B
BlitzBasic

# Copyright (C) 2012 O.S. Systems Software LTDA.
DESCRIPTION = "Extra files for fsl-gui-image"
LICENSE = "LGPL-2.0-only"
LIC_FILES_CHKSUM = "file://LICENSE;md5=39ec502560ab2755c4555ee8416dfe42"
SRC_URI = "file://rc.local.etc \
file://rc.local.init \
file://LICENSE"
S = "${UNPACKDIR}"
inherit update-rc.d
INITSCRIPT_NAME = "rc.local"
INITSCRIPT_PARAMS = "start 99 2 3 4 5 ."
do_install () {
install -d ${D}/${sysconfdir}/init.d
install -m 755 ${S}/rc.local.etc ${D}/${sysconfdir}/rc.local
install -m 755 ${S}/rc.local.init ${D}/${sysconfdir}/init.d/rc.local
}