Changeset 279
- Timestamp:
- 2005-02-21T07:03:54+01:00 (13 years ago)
- Location:
- trunk/openwrt
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/openwrt/Makefile
r272 r279 129 129 clean: 130 130 rm -rf $(TARGET_DIR) $(IMAGE).* 131 $(MAKE) $(DIST)-image-clean131 $(MAKE) openwrt-image-clean 132 132 133 133 dirclean: $(TARGETS_DIRCLEAN) 134 134 rm -rf $(TARGET_DIR) $(IMAGE).* 135 $(MAKE) $(DIST)-image-clean135 $(MAKE) openwrt-image-dirclean 136 136 137 137 distclean: clean -
trunk/openwrt/package/config/mconf.c
r197 r279 706 706 printf("\n\n" 707 707 "*** End of Buildroot configuration.\n" 708 "*** After changing root fs, use make linux-dirclean.\n" 708 709 "*** Check the top-level Makefile for additional configuration options.\n\n"); 709 710 } else -
trunk/openwrt/package/openwrt/openwrt.mk
r277 r279 63 63 64 64 linksys-nvram-dirclean: 65 rm -rf $(LINKSYS_NVRAM_ BUILD_DIR)65 rm -rf $(LINKSYS_NVRAM_DIR) 66 66 67 67 # wlconf tool extracted from linksys firmware GPL sourcetree … … 95 95 96 96 linksys-wlconf-dirclean: 97 rm -rf $(LINKSYS_WLCONF_ BUILD_DIR)97 rm -rf $(LINKSYS_WLCONF_DIR) 98 98 99 99 # mtd tool … … 145 145 rm $(OPENWRT_ADDPATTERN_TARGET) 146 146 147 openwrt: linksys-shared linksys-nvram linksys-wlconf openwrt-mtd openwrt-trx openwrt-addpattern 147 linksys: linksys-shared linksys-nvram linksys-wlconf 148 148 149 openwrt: linksys openwrt-mtd openwrt-trx openwrt-addpattern openwrt-jffs2root 150 151 openwrt-dirclean: linksys-shared-dirclean linksys-nvram-dirclean linksys-wlconf-dirclean 152 -
trunk/openwrt/target/Makefile.in
r276 r279 1 1 # Default target skeleton stuff, may be overridden 2 DIST=openwrt 2 EXTRAVERSION= 3 3 TARGET_SKELETON=target/default/skel.tar.gz 4 4 TARGET_SKEL_DIR=target/default/target_skeleton … … 11 11 12 12 13 $(DIST)-linux.trx: openwrt-trx 14 PATH=$(TARGET_PATH) trx -o $(DIST)-linux.trx $(LINUX_DIR)/$(LINUX_BINLOC) $(JFFS2FLAGS) $(IMAGE).$(ROOTFS) 13 openwrt-linux.trx: openwrt-trx 14 PATH=$(TARGET_PATH) trx -o openwrt-linux$(EXTRAVERSION).trx \ 15 $(LINUX_DIR)/$(LINUX_BINLOC) $(JFFS2FLAGS) $(IMAGE).$(ROOTFS) 15 16 16 $(DIST)-gs-code.bin: openwrt-addpattern $(DIST)-linux.trx 17 PATH=$(TARGET_PATH) addpattern -2 -i $(DIST)-linux.trx -o $(DIST)-gs-code.bin -g 17 openwrt-gs-code.bin: openwrt-addpattern openwrt-linux.trx 18 PATH=$(TARGET_PATH) addpattern -2 -i openwrt-linux$(EXTRAVERSION).trx \ 19 -o openwrt-gs-code$(EXTRAVERSION).bin -g 18 20 19 $(DIST)-g-code.bin: $(DIST)-gs-code.bin20 sed -e "1s,^W54S,W54G," < $(DIST)-gs-code.bin > $(DIST)-g-code.bin21 openwrt-g-code.bin: openwrt-gs-code.bin 22 sed -e "1s,^W54S,W54G," < openwrt-gs-code$(EXTRAVERSION).bin > openwrt-g-code$(EXTRAVERSION).bin 21 23 22 openwrt-image: openwrt $(DIST)-g-code.bin24 openwrt-image: openwrt openwrt-g-code.bin 23 25 24 $(DIST)-image-clean: 25 @-rm $(DIST)-* 2>/dev/null 26 openwrt-image-clean: 27 @-rm openwrt-* 2>/dev/null 28 29 openwrt-image-dirclean: openwrt-dirclean
Note: See TracChangeset
for help on using the changeset viewer.