Felix Fietkau
0060005bd8
procd: update to latest version, fixes a format string bug in processing init script output ( #15169 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39945
2014-03-18 12:58:15 +00:00
Felix Fietkau
956ea1cefc
ltq-vdsl-mei: disable mips16 support ( fixes #15284 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39944
2014-03-18 12:11:05 +00:00
Felix Fietkau
f960a1fdb0
busybox: fix processing of multiple NTP servers in the config ( #15294 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39935
2014-03-17 14:52:18 +00:00
Imre Kaloz
8a7d3c8a1b
use newer firmware checkout
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39933
2014-03-17 13:36:10 +00:00
Felix Fietkau
b9825247c2
polarssl: update to version 1.3.4 and add openssl compat patch
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39930
2014-03-14 15:05:46 +00:00
Felix Fietkau
6ae77556dc
ustream-ssl: add support for polarssl 1.3
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39929
2014-03-14 15:05:42 +00:00
Felix Fietkau
ee4110aff0
target/sdk: use .config instead of unconditionally enabling all build dirs
...
Call make defconfig on every build to catch newly added packages
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39913
2014-03-13 12:12:58 +00:00
Steven Barth
7ac0057c1f
odhcp6c: pass on delegate-flag on to ds-lite interface
...
SVN-Revision: 39910
2014-03-13 10:40:56 +00:00
Steven Barth
edd75e332c
netifd: pass on delegate flag from dhcp to 6rd
...
SVN-Revision: 39909
2014-03-13 10:33:26 +00:00
John Crispin
7baf4957cf
72ca3bfc401a4f1b695dcc86640dddee62716cea contained too many files
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39908
2014-03-13 07:42:59 +00:00
Hauke Mehrtens
ea2417fe03
kernel: add missing zram option
...
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39907
2014-03-12 23:36:01 +00:00
Hauke Mehrtens
00dc53dd2e
brcm47xx: add initial support for kernel 3.14
...
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39905
2014-03-12 23:28:41 +00:00
Florian Fainelli
0d92f34977
gpio-button-hotplug: don't build for 3.3 kernels
...
3.3 kernels do not have the required changes which would make
gpio-button-hotplug work, disallow building on those kernels for now.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 39903
2014-03-12 22:09:11 +00:00
Felix Fietkau
d1c64ab221
build: fix installation of default-variant packages when the source package has multiple variants ( #15237 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39899
2014-03-12 19:53:13 +00:00
John Crispin
bc6223666e
ubox: update to latest git head
...
use the fd handover api of ubus to transfer log data
the uci option log_buffer_size can be used to override the default size of 16k
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39898
2014-03-12 19:33:18 +00:00
John Crispin
086f522108
ubus: update to latest git HEAD
...
add fd handover inside ubus replies
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39897
2014-03-12 19:33:09 +00:00
John Crispin
0dc9d8d6ff
fstools: add the new fstools package
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39895
2014-03-12 19:32:51 +00:00
Felix Fietkau
24095302aa
grub2: update to 2.02-beta2, fixes mac os x 10.9 support (and many other things)
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39889
2014-03-12 11:21:16 +00:00
Felix Fietkau
73d9ad0c95
ath9k: merge an aggregation related fix
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39886
2014-03-12 10:00:56 +00:00
Felix Fietkau
2835152df8
openssl: Fix x86_64 build on some 64bit host systems
...
On some build hosts openssl fails to install since openssl installs itself into
lib64 while the openwrt Makefile expects the libs to end up in lib.
install -m0644 .../openwrt/build_dir/target-x86_64_uClibc-0.9.33.2/openssl-1.0.1e/ipkg-install/usr/lib/libcrypto.so.* .../openwrt/build_dir/target-x86_64_uClibc-0.9.33.2/openssl-1.0.1e/ipkg-x86_64/libopenssl/usr/lib/
install: cannot stat '.../openwrt/build_dir/target-x86_64_uClibc-0.9.33.2/openssl-1.0.1e/ipkg-install/usr/lib/libcrypto.so.*': No such file or directory
make[2]: *** [/openwrt/bin/x86_64/packages/libopenssl_1.0.1e-2_x86_64.ipk] Error 1
make[2]: Leaving directory `/openwrt/package/libs/openssl'
make[1]: *** [package/libs/openssl/compile] Error 2
make[1]: Leaving directory `/openwrt'
Set LIBDIR accordingly to fix this.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
SVN-Revision: 39885
2014-03-12 10:00:53 +00:00
Felix Fietkau
c112b16dd8
ath9k: further improvements to noise immunity handling on older chips
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39879
2014-03-11 15:31:50 +00:00
Steven Barth
97ea9e3c2a
iptables/netfilter: add connlimit to conntrack-extra
...
SVN-Revision: 39878
2014-03-11 14:58:00 +00:00
Steven Barth
09fd40c28f
iptables: bump to 1.4.21
...
SVN-Revision: 39877
2014-03-11 14:57:55 +00:00
Felix Fietkau
9c48c7a7dc
ltq-vmmc: disable mips16 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39876
2014-03-11 13:20:07 +00:00
Felix Fietkau
f23a50dff9
ltq-tapi: disable mips16 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39875
2014-03-11 13:20:04 +00:00
Felix Fietkau
0c5809fb91
ltq-adsl: disable mips16 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39874
2014-03-11 13:20:01 +00:00
Felix Fietkau
f577d6f336
ltq-adsl: disable mips16 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39873
2014-03-11 13:19:56 +00:00
Felix Fietkau
75ac488f4d
openvpn: make size optimization configurable
...
Signed-off-by: Christoph Kottke <christoph.kottke@gmx.de>
SVN-Revision: 39872
2014-03-11 12:07:17 +00:00
Felix Fietkau
83f9fc12d6
netifd: update to latest version, includes interface handling fixes by Hans Dedecker
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39870
2014-03-11 09:28:28 +00:00
Steven Barth
cd695565fb
odhcpd/odhcp6c: fix HMAC-MD5 in DHCPv6-Reconfigure
...
SVN-Revision: 39868
2014-03-11 08:21:58 +00:00
Felix Fietkau
dd7524f3f9
ath9k: add another ANI fix for older chipsets
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39865
2014-03-10 18:58:52 +00:00
Felix Fietkau
24dae38f43
iproute2: add ip-full variant to disable IP_CONFIG_TINY
...
This change creates a new ip-full variant for the ip package.
It disables IP_CONFIG_TINY to make some iproute2 features available like xfrm, gretap, ...
Signed-off-by: Thomas Wouters <thomaswouters@gmail.com>
SVN-Revision: 39854
2014-03-09 13:32:59 +00:00
Felix Fietkau
c2bbaf439c
openssl: update to 1.0.1f
...
This version includes this changes:
Don't include gmt_unix_time in TLS server and client random values
Fix for TLS record tampering bug CVE-2013-4353
Fix for TLS version checking bug CVE-2013-6449
Fix for DTLS retransmission bug CVE-2013-6450
Signed-off-by: Peter Wagner <tripolar@gmx.at>
SVN-Revision: 39853
2014-03-09 13:23:41 +00:00
Felix Fietkau
836e9fad45
openssl: detect configuration changes and clean build tree accordingly ( fixes #15067 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39852
2014-03-09 13:19:29 +00:00
Felix Fietkau
46c8633c45
openssl: move make depend call to Build/Configure
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39851
2014-03-09 13:19:25 +00:00
Felix Fietkau
f7f1a496df
ath9k: improve ANI debugfs file
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39849
2014-03-09 10:31:05 +00:00
Felix Fietkau
977f161400
ath9k: fix tx queue configuration for buffered multicast frames
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39848
2014-03-09 10:05:41 +00:00
Felix Fietkau
646ff55b06
ath9k: further reduce false baseband hang detects on older chips
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39847
2014-03-09 08:53:39 +00:00
Felix Fietkau
976ae17c67
mac80211: add a few upstream fixes
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39846
2014-03-09 08:53:31 +00:00
Felix Fietkau
452d019d3e
netifd: update to latest version, adds a bridge reload fix and fixes #15157
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39791
2014-03-07 18:14:41 +00:00
Steven Barth
d3f39e89a3
odhcp6c: fix int-overflow after 50d (thx Hauke Mehrtens)
...
SVN-Revision: 39785
2014-03-07 09:35:17 +00:00
Zoltan Herpai
6892ed8193
uboot-sunxi: bump u-boot version - update u-boot to 2014.01-rc1 - smp support on a20
...
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
Signed-off-by: Zalan Blenessy <zalan.blenessy@gmail.com>
SVN-Revision: 39779
2014-03-05 23:16:18 +00:00
Steven Barth
f294f23c02
netifd: don't incorrectly announce up-status via ubus
...
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 39777
2014-03-05 17:36:14 +00:00
Steven Barth
0a3cb4cdff
odhcp6c: several fixes
...
* Reduce RA/DHCPv6 spam filter to 30s by default and make it configurable
* Don't set nd_ra_{reachable,retransmit] to 0 when received in RAs
SVN-Revision: 39775
2014-03-05 08:59:11 +00:00
Florian Fainelli
c6c0d09f85
brcm2708-gpu-fw: update to a newer version
...
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 39769
2014-02-28 20:29:51 +00:00
Felix Fietkau
a2068afd77
ath9k: improve noise immunity behavior for older chipsets (ar92xx and earlier), should improve stability
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39767
2014-02-28 18:08:23 +00:00
Felix Fietkau
cec0f8420d
mac80211: declare missing config parameter mesh_id
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39766
2014-02-28 18:08:16 +00:00
Felix Fietkau
a9d4cd35fc
hostapd: fix deletion of wds sta interfaces in AP mode
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39765
2014-02-28 14:43:53 +00:00
Felix Fietkau
95c97bf201
ath5k: fix enabling 5/10 mhz channel bandwidth support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39758
2014-02-27 21:36:28 +00:00
Steven Barth
1b3a868309
netifd: Reintroduce link-layer sensing (thx Hans Decker, Karl Vogel)
...
SVN-Revision: 39757
2014-02-27 12:42:38 +00:00
Steven Barth
0bf9032145
netifd: don't always assume addrs & routes are applied
...
netifd didn't check the netlink return values and kept assuming
routes are in place even if they weren't
SVN-Revision: 39755
2014-02-26 13:27:32 +00:00
Hauke Mehrtens
82dd29d1e8
broadcom-diag: fix compile
...
BCM47XX_BOARD_LINKSYS_WRT54G was renamed in r39718
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39753
2014-02-25 22:52:33 +00:00
Felix Fietkau
ccccc104b3
ath9k: add fixes for rx processing and baseband hang detection
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39751
2014-02-25 10:27:02 +00:00
Felix Fietkau
9a97bfcc2b
openssl: use termios instead of termio
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39748
2014-02-24 21:09:03 +00:00
Felix Fietkau
b2ef0616ba
libnl-tiny: fix include path to poll.h
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39747
2014-02-24 21:08:28 +00:00
Felix Fietkau
c01d211259
hostapd: link against librt if eglibc is used
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39741
2014-02-24 15:03:06 +00:00
Steven Barth
8aa91b167f
odhcpd: avoid the unspecificed address being advertised as DNS
...
SVN-Revision: 39740
2014-02-24 13:37:11 +00:00
Steven Barth
e6044ef1c0
odhcpd: fix DNS-server and MSR-entries in RA
...
Similarly to the previously broken address pools, DNS-servers and some
MSRs could be advertised incorrectly as well. This is now fixed.
SVN-Revision: 39739
2014-02-24 13:33:45 +00:00
Jo-Philipp Wich
97c59cea1f
usbreset: fix possible access to uninitialized variable ( #15041 )
...
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 39738
2014-02-23 23:42:12 +00:00
Felix Fietkau
a70282720d
ubus: update to latest version, fixes lua binding issues and adds fd passing support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39726
2014-02-23 17:32:26 +00:00
Felix Fietkau
f2719168ba
libubox: update to latest version, improves uloop error handling
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39725
2014-02-23 17:32:22 +00:00
Felix Fietkau
a42b421c79
procd: depend on libubox directly to rebuild on ABI changes
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39724
2014-02-23 17:32:18 +00:00
Felix Fietkau
a15524582c
netifd: depend on libubox directly to rebuild on ABI changes
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39723
2014-02-23 17:32:15 +00:00
Felix Fietkau
01c4775116
ubus: declare main version as ABI version for libubus
...
Reorder BuildPackage calls, as libubox needs to come first for ABI
version handling to work
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39722
2014-02-23 17:32:11 +00:00
Felix Fietkau
538e38f5d3
libubox: declare main version as ABI version
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39721
2014-02-23 17:32:07 +00:00
Felix Fietkau
6c8300df3d
netifd: update to latest version, fixes wireless device reload handling
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39706
2014-02-23 08:13:28 +00:00
Felix Fietkau
8167b27bca
ath5k: mark the current survey channel as being used
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39691
2014-02-22 13:57:09 +00:00
Felix Fietkau
08255e0237
ath9k: reduce unnecessary logspam ( #14940 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39690
2014-02-22 13:48:56 +00:00
Felix Fietkau
3ae79cd848
ath9k: fix issues with 5/10 mhz channel bandwidth ( #14916 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39689
2014-02-22 13:43:48 +00:00
Felix Fietkau
ec4ab71c54
ath9k: fix issues that have been plaguing some powersave clients since the tx queueing rework ( #14092 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39688
2014-02-22 13:01:11 +00:00
Felix Fietkau
b75914d2fb
ath9k: show more reset causes in debugfs
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39687
2014-02-22 13:01:07 +00:00
Felix Fietkau
ca82dfe31b
mac80211: merge some upstream fixes
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39686
2014-02-22 13:01:04 +00:00
Felix Fietkau
fc0a51c2e1
ath9k: enable u-apsd support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39685
2014-02-22 13:01:00 +00:00
Felix Fietkau
b44e9bff9d
ath9k: add a tx locking fix
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 39684
2014-02-22 13:00:55 +00:00
Hauke Mehrtens
ac46cbcfc0
kernel: add missing depends on kmod-mii
...
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39670
2014-02-21 22:57:39 +00:00
Hauke Mehrtens
9a2493a004
kexec-tools: disable lzma support
...
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 39652
2014-02-21 20:06:41 +00:00
Steven Barth
980626aa32
odhcpd: fix wrong address pool being advertised
...
SVN-Revision: 39651
2014-02-21 18:02:25 +00:00
Imre Kaloz
6a4ecd05f0
the root password should be empty for real, like before
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 39650
2014-02-21 10:39:14 +00:00
Jo-Philipp Wich
b22ad85bc6
firewall: fix validation constraints
...
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 39649
2014-02-21 00:22:23 +00:00
Jo-Philipp Wich
354efde275
netifd: fix validation constraints
...
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 39648
2014-02-21 00:17:04 +00:00
Jo-Philipp Wich
21f4cf1a73
firewall: fix several ipset integration issues ( #15016 )
...
- Do not consider bitmap storage for IPv6 family sets
- Move ipset family parameter before any additional option
- Only emit family parameter for hash sets
- Do not allow IPv6 iprange for IPv4 sets and vice versa
Signed-off-by: Jo-Philipp Wich <jow@openwrt.org>
SVN-Revision: 39647
2014-02-20 23:20:10 +00:00
Steven Barth
12fa3eae23
6in4: add support for he.net updatekey
...
SVN-Revision: 39646
2014-02-20 21:36:15 +00:00
Nicolas Thill
41d3230b0c
mac80211: disable libertas-sd on uml target
...
SVN-Revision: 39630
2014-02-18 22:15:52 +00:00
Nicolas Thill
ece85d2d25
uboot-envtools: pass target cflags
...
SVN-Revision: 39629
2014-02-18 22:11:24 +00:00
Steven Barth
97faa098a2
odhcp6c: readd userclass and vendorclass
...
SVN-Revision: 39628
2014-02-18 18:30:47 +00:00
John Crispin
0da7d381f0
odhcp6c: add validation rules to proto handler
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39624
2014-02-18 13:34:16 +00:00
John Crispin
159ee2bbd3
relayd: add uci validation
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39623
2014-02-18 13:34:12 +00:00
John Crispin
7d4103ddd4
mac80211: add validation rules
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39622
2014-02-18 13:34:08 +00:00
John Crispin
8fb44e0d1e
netifd: add validation support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39621
2014-02-18 13:34:04 +00:00
John Crispin
26e850dafa
hostapd: add validation rules to wireless handler
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39620
2014-02-18 13:33:59 +00:00
John Crispin
ee5cb76c66
ppp: add validation rules to proto handler
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39619
2014-02-18 13:33:56 +00:00
John Crispin
ed72f7102c
comgt: add validation rules to proto handler
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39618
2014-02-18 13:33:52 +00:00
John Crispin
15ebcfc04e
firewall3: update init.d script to make use of procd
...
add validation data
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39617
2014-02-18 13:33:47 +00:00
John Crispin
f9f8948c6e
ubox: logd did not register its config.reload trigger properly
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39616
2014-02-18 13:33:43 +00:00
John Crispin
7917a87d12
base-files: split /etc/init.d/boot into 2 files
...
this allows us to bind a procd trigger to system.@system[-1]
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39615
2014-02-18 13:33:40 +00:00
John Crispin
204e859542
netifd: update to latest git head
...
this adds support for proto and wireless handler adding uci validation rules
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39614
2014-02-18 13:33:36 +00:00
John Crispin
97ee2bc616
procd: update to latest git head
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39613
2014-02-18 13:33:32 +00:00
John Crispin
b71eb4b5df
procd: the helper script did not export all functions properly
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39612
2014-02-18 13:33:29 +00:00
John Crispin
9bf6569f68
authsae: update to latest version
...
Signed-off-by: Stefan May <smay@4finger.net>
SVN-Revision: 39608
2014-02-18 13:33:13 +00:00
John Crispin
408306633a
openssl: fix up PKG_DEPENDS. there are 2 missing CONFIG_ prefixe
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 39607
2014-02-18 13:33:08 +00:00