remove capitalization

This commit is contained in:
Jakob Olsson 2018-04-23 09:01:49 +02:00
parent 99ac1c3c41
commit fc2d33ec4d
4 changed files with 5 additions and 5 deletions

View file

@ -35,9 +35,9 @@ define Package/onboardingd/install
$(INSTALL_DIR) $(1)/sbin # make the dir $(INSTALL_DIR) $(1)/sbin # make the dir
$(INSTALL_BIN) $(PKG_BUILD_DIR)/parser $(1)/sbin/ # copy binaries to new directory $(INSTALL_BIN) $(PKG_BUILD_DIR)/parser $(1)/sbin/ # copy binaries to new directory
$(INSTALL_BIN) $(PKG_BUILD_DIR)/watcher $(1)/sbin/ # copy binaries to new directory $(INSTALL_BIN) $(PKG_BUILD_DIR)/watcher $(1)/sbin/ # copy binaries to new directory
$(INSTALL_DIR) $(1)/root/JSON # create the directory JSON in root $(INSTALL_DIR) $(1)/root/json # create the directory JSON in root
$(CP) ./JSON/* $(1)/root/JSON # copy files from JSON folder to router JSON $(CP) ./json/* $(1)/root/json # copy files from JSON folder to router JSON
$(CP) ./JSON/* $(1)/root/ $(CP) ./json/* $(1)/root/
endef endef
$(eval $(call BuildPackage,onboardingd)) $(eval $(call BuildPackage,onboardingd))

View file

@ -1,3 +1,3 @@
config onboarding onboarding config onboarding onboarding
option verbose 1 option verbose 1
option file '/root/JSON/APs.json' option file '/root/json/aps.json'

View file

@ -28,7 +28,7 @@ start_service() {
procd_set_param command "/sbin/parser" procd_set_param command "/sbin/parser"
procd_append_param command --verbose "$verbose" procd_append_param command --verbose "$verbose"
if [ "$file" ] if [ "$file" ]
then then
procd_append_param command --path "$file" procd_append_param command --path "$file"