mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-23 11:02:11 +00:00
16 lines
421 B
Makefile
16 lines
421 B
Makefile
|
|
################################################################################
|
||
|
|
#
|
||
|
|
# initscripts
|
||
|
|
#
|
||
|
|
################################################################################
|
||
|
|
|
||
|
|
# source included in buildroot
|
||
|
|
INITSCRIPTS_SOURCE =
|
||
|
|
|
||
|
|
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))
|