You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
560 B
14 lines
560 B
3 years ago
|
################################################################################
|
||
|
#
|
||
|
# rc.local-scripts
|
||
|
#
|
||
|
################################################################################
|
||
|
|
||
|
rc_local-scripts: | $(TARGET_DIR)
|
||
|
$(INSTALL_EXEC) -D $(PKG_FILES_DIR)/rc.local.init $(TARGET_sysconfdir)/init.d/rc.local
|
||
|
$(UPDATE-RC.D) rc.local start 99 2 3 4 5 .
|
||
|
$(INSTALL_EXEC) -D $(PKG_FILES_DIR)/rc.local $(TARGET_sysconfdir)/rc.local
|
||
|
ifeq ($(PERSISTENT_VAR_PARTITION),yes)
|
||
|
$(INSTALL_EXEC) -D $(PKG_FILES_DIR)/rc.local-var $(TARGET_localstatedir)/etc/rc.local
|
||
|
endif
|