Skip to content

Commit

Permalink
Implement entware support for DSL-AX82U
Browse files Browse the repository at this point in the history
  • Loading branch information
zaloisio committed Apr 5, 2021
1 parent 31cbc4d commit b2c9988
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ install: generic_exe_install
rm -f $(INSTALL_DIR)/opt/scripts/stress-fs.sh
rm -f $(INSTALL_DIR)/opt/scripts/stress-fs-flist.txt
-rm -rf $(INSTALL_DIR)/opt
-mkdir -p $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-xdslupdown.sh $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-proc.sh $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-fs.sh $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-fs-flist.txt $(INSTALL_DIR)/opt/scripts
-mkdir -p $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-xdslupdown.sh $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-proc.sh $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-fs.sh $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-fs-flist.txt $(INSTALL_DIR)/rom/rom/scripts

clean:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,18 @@ LIBS = -lpthread


all install: $(EXE) generic_exe_install
install -m 777 -d $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-xdslupdown.sh $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-proc.sh $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-fs.sh $(INSTALL_DIR)/opt/scripts
install -m 755 scripts/stress-fs-flist.txt $(INSTALL_DIR)/opt/scripts
install -m 777 -d $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-xdslupdown.sh $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-proc.sh $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-fs.sh $(INSTALL_DIR)/rom/rom/scripts
install -m 755 scripts/stress-fs-flist.txt $(INSTALL_DIR)/rom/rom/scripts

clean: generic_clean
rm -f $(INSTALL_DIR)/bin/$(EXE)
rm -f $(INSTALL_DIR)/opt/scripts/stress-xdslupdown.sh
rm -f $(INSTALL_DIR)/opt/scripts/stress-proc.sh
rm -f $(INSTALL_DIR)/opt/scripts/stress-fs.sh
rm -f $(INSTALL_DIR)/opt/scripts/stress-fs-flist.txt
rm -f $(INSTALL_DIR)/rom/rom/scripts/stress-xdslupdown.sh
rm -f $(INSTALL_DIR)/rom/rom/scripts/stress-proc.sh
rm -f $(INSTALL_DIR)/rom/rom/scripts/stress-fs.sh
rm -f $(INSTALL_DIR)/rom/rom/scripts/stress-fs-flist.txt

binaryonly_dist_clean: clean generic_binaryonly_dist_clean
rm -f Makefile.fullsrc
Expand Down

0 comments on commit b2c9988

Please sign in to comment.