mirror of https://github.com/hak5/openwrt-owl.git
parent
a2b1ed7b3c
commit
c36287f707
|
@ -1 +1 @@
|
||||||
root:$1$$qRPK7m23GJusamGpoGLby/:0:0:root:/tmp:/bin/ash
|
root:$1$$F1Mlz4sQUgmmLkqZr8jnR/:0:0:root:/tmp:/bin/ash
|
||||||
|
|
|
@ -50,10 +50,17 @@ config BR2_PACKAGE_KMOD_CRYPTO
|
||||||
help
|
help
|
||||||
Kernel modules for cryptographic algorithms
|
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
|
config BR2_PACKAGE_KMOD_MPPE
|
||||||
tristate "PPP MPPE/MPPC module"
|
tristate "PPP MPPE/MPPC module"
|
||||||
default m
|
default m
|
||||||
select BR2_PACKAGE_KMOD_CRYPTO
|
select BR2_PACKAGE_KMOD_CRYPTO
|
||||||
|
depends BR2_PACKAGE_KMOD_PPP
|
||||||
help
|
help
|
||||||
Support for Microsoft PPP Encryption/Compression
|
Support for Microsoft PPP Encryption/Compression
|
||||||
|
|
||||||
|
|
|
@ -53,6 +53,9 @@ $(eval $(call KMOD_template,USB,usb,\
|
||||||
$(eval $(call KMOD_template,CRYPTO,crypto,\
|
$(eval $(call KMOD_template,CRYPTO,crypto,\
|
||||||
$(MODULES_DIR)/kernel/crypto/*.o \
|
$(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,\
|
$(eval $(call KMOD_template,MPPE,mppe,\
|
||||||
$(MODULES_DIR)/kernel/drivers/net/ppp_mppe_mppc.o \
|
$(MODULES_DIR)/kernel/drivers/net/ppp_mppe_mppc.o \
|
||||||
))
|
))
|
||||||
|
|
|
@ -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
|
|
@ -680,7 +680,7 @@ CONFIG_NET_ETHERNET=y
|
||||||
# CONFIG_FDDI is not set
|
# CONFIG_FDDI is not set
|
||||||
# CONFIG_HIPPI is not set
|
# CONFIG_HIPPI is not set
|
||||||
# CONFIG_PLIP is not set
|
# CONFIG_PLIP is not set
|
||||||
CONFIG_PPP=y
|
CONFIG_PPP=m
|
||||||
# CONFIG_PPP_MULTILINK is not set
|
# CONFIG_PPP_MULTILINK is not set
|
||||||
# CONFIG_PPP_FILTER is not set
|
# CONFIG_PPP_FILTER is not set
|
||||||
CONFIG_PPP_ASYNC=m
|
CONFIG_PPP_ASYNC=m
|
||||||
|
@ -853,7 +853,7 @@ CONFIG_JFFS2_BBC_LZO=y
|
||||||
CONFIG_JFFS2_BBC_LZARI=y
|
CONFIG_JFFS2_BBC_LZARI=y
|
||||||
CONFIG_JFFS2_BBC_LZHD=y
|
CONFIG_JFFS2_BBC_LZHD=y
|
||||||
CONFIG_JFFS2_BBC_LZSS=y
|
CONFIG_JFFS2_BBC_LZSS=y
|
||||||
CONFIG_CRAMFS=y
|
# CONFIG_CRAMFS is not set
|
||||||
CONFIG_SQUASHFS=y
|
CONFIG_SQUASHFS=y
|
||||||
# CONFIG_TMPFS is not set
|
# CONFIG_TMPFS is not set
|
||||||
CONFIG_RAMFS=y
|
CONFIG_RAMFS=y
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
config BR2_PACKAGE_PPP
|
config BR2_PACKAGE_PPP
|
||||||
tristate
|
tristate
|
||||||
|
select BR2_PACKAGE_KMOD_PPP
|
||||||
prompt "PPP daemon"
|
prompt "PPP daemon"
|
||||||
default y
|
default y
|
||||||
|
|
||||||
|
|
|
@ -5,4 +5,5 @@ Version: 2.4.3-3
|
||||||
Architecture: mipsel
|
Architecture: mipsel
|
||||||
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
Maintainer: Felix Fietkau <nbd@vd-s.ath.cx>
|
||||||
Source: buildroot internal
|
Source: buildroot internal
|
||||||
|
Depends: kmod-ppp
|
||||||
Description: a PPP (Point-to-Point Protocol) daemon (with MPPE/MPPC support)
|
Description: a PPP (Point-to-Point Protocol) daemon (with MPPE/MPPC support)
|
||||||
|
|
Loading…
Reference in New Issue