summaryrefslogtreecommitdiffstats
path: root/package/linux
diff options
context:
space:
mode:
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-03-14 17:22:37 +0000
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>2005-03-14 17:22:37 +0000
commit94c100d3c21074b8f31753ceadf4406ab21be420 (patch)
tree32e4dd6da52b6594301f6e3e4399866c68a99e35 /package/linux
parent0840839c159a57ba5de8760ac56d1fd47b982e77 (diff)
make kernel ppp optional and remove cramfs support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@372 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/linux')
-rw-r--r--package/linux/Config.in7
-rw-r--r--package/linux/Makefile3
-rw-r--r--package/linux/control/kmod-ppp.control8
-rw-r--r--package/linux/linux.config4
4 files changed, 20 insertions, 2 deletions
diff --git a/package/linux/Config.in b/package/linux/Config.in
index bcb73db91..99cb26f70 100644
--- a/package/linux/Config.in
+++ b/package/linux/Config.in
@@ -50,10 +50,17 @@ config BR2_PACKAGE_KMOD_CRYPTO
help
Kernel modules for cryptographic algorithms
+config BR2_PACKAGE_KMOD_PPP
+ tristate "PPP support"
+ default m
+ help
+ Kernel support for PPP
+
config BR2_PACKAGE_KMOD_MPPE
tristate "PPP MPPE/MPPC module"
default m
select BR2_PACKAGE_KMOD_CRYPTO
+ depends BR2_PACKAGE_KMOD_PPP
help
Support for Microsoft PPP Encryption/Compression
diff --git a/package/linux/Makefile b/package/linux/Makefile
index c6c270b2d..914d73a75 100644
--- a/package/linux/Makefile
+++ b/package/linux/Makefile
@@ -53,6 +53,9 @@ $(eval $(call KMOD_template,USB,usb,\
$(eval $(call KMOD_template,CRYPTO,crypto,\
$(MODULES_DIR)/kernel/crypto/*.o \
))
+$(eval $(call KMOD_template,PPP,ppp,\
+ $(MODULES_DIR)/kernel/drivers/net/ppp_generic.o \
+))
$(eval $(call KMOD_template,MPPE,mppe,\
$(MODULES_DIR)/kernel/drivers/net/ppp_mppe_mppc.o \
))
diff --git a/package/linux/control/kmod-ppp.control b/package/linux/control/kmod-ppp.control
new file mode 100644
index 000000000..4c2a4c271
--- /dev/null
+++ b/package/linux/control/kmod-ppp.control
@@ -0,0 +1,8 @@
+Package: kmod-ppp
+Priority: optional
+Section: net
+Version: 2.4.29-1
+Architecture: mipsel
+Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
+Source: buildroot internal
+Description: PPP support
diff --git a/package/linux/linux.config b/package/linux/linux.config
index dada53e2d..4d2a7ef1c 100644
--- a/package/linux/linux.config
+++ b/package/linux/linux.config
@@ -680,7 +680,7 @@ CONFIG_NET_ETHERNET=y
# CONFIG_FDDI is not set
# CONFIG_HIPPI is not set
# CONFIG_PLIP is not set
-CONFIG_PPP=y
+CONFIG_PPP=m
# CONFIG_PPP_MULTILINK is not set
# CONFIG_PPP_FILTER is not set
CONFIG_PPP_ASYNC=m
@@ -853,7 +853,7 @@ CONFIG_JFFS2_BBC_LZO=y
CONFIG_JFFS2_BBC_LZARI=y
CONFIG_JFFS2_BBC_LZHD=y
CONFIG_JFFS2_BBC_LZSS=y
-CONFIG_CRAMFS=y
+# CONFIG_CRAMFS is not set
CONFIG_SQUASHFS=y
# CONFIG_TMPFS is not set
CONFIG_RAMFS=y