mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-02 05:33:57 -09:00
The package is part of Buildroot and thus under GPL-2.0-or-later unless stated otherwise, as described in COPYING. Signed-off-by: Fiona Klute (Othermo GmbH) <fiona.klute@gmx.de> Signed-off-by: Julien Olivain <ju.o@free.fr>
15 lines
407 B
Makefile
15 lines
407 B
Makefile
################################################################################
|
|
#
|
|
# initscripts
|
|
#
|
|
################################################################################
|
|
|
|
INITSCRIPTS_LICENSE = GPL-2.0-or-later
|
|
|
|
define INITSCRIPTS_INSTALL_TARGET_CMDS
|
|
mkdir -p $(TARGET_DIR)/etc/init.d
|
|
$(INSTALL) -D -m 0755 package/initscripts/init.d/* $(TARGET_DIR)/etc/init.d/
|
|
endef
|
|
|
|
$(eval $(generic-package))
|