diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-02-21 06:03:54 +0000 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2005-02-21 06:03:54 +0000 |
commit | 3767571d99a5246be0f78145fd4d9e8b0d86d74f (patch) | |
tree | c7b5c1bae00f6b2717aed25be5a6c0c3d3737808 /openwrt/package | |
parent | 4b1b3270b0d443e8651b71e4c92be8eed9ccced5 (diff) | |
download | mtk-20170518-3767571d99a5246be0f78145fd4d9e8b0d86d74f.zip mtk-20170518-3767571d99a5246be0f78145fd4d9e8b0d86d74f.tar.gz mtk-20170518-3767571d99a5246be0f78145fd4d9e8b0d86d74f.tar.bz2 |
remove DIST and add EXTRAVERSION, discussed with mbm. fixed dirclean target for linksys-stuff
SVN-Revision: 279
Diffstat (limited to 'openwrt/package')
-rw-r--r-- | openwrt/package/config/mconf.c | 1 | ||||
-rw-r--r-- | openwrt/package/openwrt/openwrt.mk | 10 |
2 files changed, 8 insertions, 3 deletions
diff --git a/openwrt/package/config/mconf.c b/openwrt/package/config/mconf.c index 0db6f8f..659e49c 100644 --- a/openwrt/package/config/mconf.c +++ b/openwrt/package/config/mconf.c @@ -705,6 +705,7 @@ int main(int ac, char **av) conf_write(NULL); printf("\n\n" "*** End of Buildroot configuration.\n" + "*** After changing root fs, use make linux-dirclean.\n" "*** Check the top-level Makefile for additional configuration options.\n\n"); } else printf("\n\nYour Buildroot configuration changes were NOT saved.\n\n"); diff --git a/openwrt/package/openwrt/openwrt.mk b/openwrt/package/openwrt/openwrt.mk index dcd1856..5c3f6b1 100644 --- a/openwrt/package/openwrt/openwrt.mk +++ b/openwrt/package/openwrt/openwrt.mk @@ -62,7 +62,7 @@ linksys-nvram-clean: -$(MAKE) -C $(LINKSYS_NVRAM_BUILD_DIR) clean linksys-nvram-dirclean: - rm -rf $(LINKSYS_NVRAM_BUILD_DIR) + rm -rf $(LINKSYS_NVRAM_DIR) # wlconf tool extracted from linksys firmware GPL sourcetree # WRT54GS_3_37_2_1109_US @@ -94,7 +94,7 @@ linksys-wlconf-clean: -$(MAKE) -C $(LINKSYS_WLCONF_BUILD_DIR) clean linksys-wlconf-dirclean: - rm -rf $(LINKSYS_WLCONF_BUILD_DIR) + rm -rf $(LINKSYS_WLCONF_DIR) # mtd tool OPENWRT_MTD_SOURCE=package/openwrt/mtd.c @@ -144,5 +144,9 @@ openwrt-addpattern: $(OPENWRT_ADDPATTERN_TARGET) openwrt-addpattern-clean: rm $(OPENWRT_ADDPATTERN_TARGET) -openwrt: linksys-shared linksys-nvram linksys-wlconf openwrt-mtd openwrt-trx openwrt-addpattern +linksys: linksys-shared linksys-nvram linksys-wlconf + +openwrt: linksys openwrt-mtd openwrt-trx openwrt-addpattern openwrt-jffs2root + +openwrt-dirclean: linksys-shared-dirclean linksys-nvram-dirclean linksys-wlconf-dirclean |