diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 01:23:36 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-03-02 01:23:36 +0000 |
commit | 68ca8e7818356c0dbf2e0400b177139a656791c0 (patch) | |
tree | e8147a0b512f9bf0e42a6ac3f1a693b09c7c1971 /package/base-files/Makefile | |
parent | a256c81dd99148e289dc7a73c01b9108701ad9d3 (diff) | |
download | mtk-20170518-68ca8e7818356c0dbf2e0400b177139a656791c0.zip mtk-20170518-68ca8e7818356c0dbf2e0400b177139a656791c0.tar.gz mtk-20170518-68ca8e7818356c0dbf2e0400b177139a656791c0.tar.bz2 |
make squashfs overlay support more generic and integrate it for x86-2.6
SVN-Revision: 6450
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 33e6522..5cbef91 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -41,6 +41,11 @@ define Package/base-files$(TARGET) This package contains a base filesystem and system scripts for OpenWrt. URL:=http://openwrt.org/ VERSION:=$(PKG_RELEASE)-$(REV) + $(call Config,network.lan.proto,string,static,LAN Protocol) + $(call Config,network.lan.ipaddr,ip,192.168.1.1,LAN IP Address) + $(call Config,network.lan.netmask,netmask,255.255.0.0,LAN Network Mask) + $(call Config,network.lan.gateway,ip,,LAN Gateway) + $(call Config,network.lan.dns,ip,,LAN DNS server) endef define Package/base-files$(TARGET)/conffiles @@ -153,3 +158,5 @@ $(eval $(call BuildPackage,base-files$(TARGET))) $(eval $(call BuildPackage,libgcc)) $(eval $(call BuildPackage,libpthread)) $(eval $(call BuildPackage,uclibc)) + + |