mirror of
https://github.com/Freescale/meta-freescale-distro.git
synced 2025-10-22 23:13:02 +02:00

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>
24 lines
601 B
BlitzBasic
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
|
|
|
|
}
|