Re: [LEDE-DEV] Suggested resolution to problem: OpenWRT box gets overfilled with a package, no space left on device

2018-04-22 Thread Ludwig Jaffe
I forgot:

first say

rm -rf /tmp/staging


and at the end clean up to be sure:

rm -rf /tmp/staging



On 04/23/2018 01:30 AM, Ludwig Jaffe wrote:
> Problem: OpenWRT box gets overfilled with a package, no space left on device
> and no good clean up.
>
> Suggestion:
> opkg installes to /tmp/staging which is ramdisk
> then it says du -c /tmp/staging
> and df /overlay
> then compare if the last line of df has a bigger number
> then du -c /tmp/staging.
> If yes, then mv /tmp/staging/* /
> in no, write "staging failed, package to big. Free $df - $du-c bytes and
> try again"
>
> Do you like the algorithm above?
> Should it be implemented as a wrapper script?
>
>
> Cheers,
>
> Ludwig
>
>



___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] Suggested resolution to problem: OpenWRT box gets overfilled with a package, no space left on device

2018-04-22 Thread Ludwig Jaffe
Problem: OpenWRT box gets overfilled with a package, no space left on device
and no good clean up.

Suggestion:
opkg installes to /tmp/staging which is ramdisk
then it says du -c /tmp/staging
and df /overlay
then compare if the last line of df has a bigger number
then du -c /tmp/staging.
If yes, then mv /tmp/staging/* /
in no, write "staging failed, package to big. Free $df - $du-c bytes and
try again"

Do you like the algorithm above?
Should it be implemented as a wrapper script?


Cheers,

Ludwig




0xF8804DAF.asc
Description: application/pgp-keys
___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] please add encloses /usr/bin/installed.sh to main image of lede/openWRT

2018-04-22 Thread Ludwig Jaffe
please add the list-installed-script to the main image of openwrt
as it is small and very useful to find out what is installed on the box.

original:
devkid/list-user-installed-

packages.sh

I "installed" the script as /usr/bin/installed.sh with 755 rights
also I suggest that it should be put at
/usr/bin
or to
/bin  (but only if the main image does not contain /usr/bin)


script: /usr/bin/installed.sh

#!/bin/sh

FLASH_TIME=$(opkg info busybox | grep '^Installed-Time: ')

for i in $(opkg list-installed | cut -d' ' -f1)
do
    if [ "$(opkg info $i | grep '^Installed-Time: ')" != "$FLASH_TIME" ]
    then
    echo $i
    fi
done



---

Please integrate it.

Thanks

Ludwig




signature.asc
Description: OpenPGP digital signature
___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] [PATCH 2/2] firmware-utils: mkdapimg2: Fix a few issues discovered by clang

2018-04-22 Thread Rosen Penev
I used clang -Weverything and fixed most of the warnings displayed.

Signed-off-by: Rosen Penev 
---
 tools/firmware-utils/src/mkdapimg2.c | 20 +---
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/tools/firmware-utils/src/mkdapimg2.c 
b/tools/firmware-utils/src/mkdapimg2.c
index 59c9f00..89febbc 100644
--- a/tools/firmware-utils/src/mkdapimg2.c
+++ b/tools/firmware-utils/src/mkdapimg2.c
@@ -58,7 +58,7 @@
 #define MAX_FW_VER_LEN 16
 #define MAX_REG_LEN8
 
-struct img_hdr_struct {
+static struct img_hdr_struct {
uint32_t hdr_len;
uint32_t checksum;
uint32_t total_size;
@@ -68,17 +68,17 @@ struct img_hdr_struct {
char fw_reg[MAX_REG_LEN];
 } imghdr ;
 
-char *progname;
+static char *progname;
 
-void
+static void
 perrexit(int code, char *msg)
 {
fprintf(stderr, "%s: %s: %s\n", progname, msg, strerror(errno));
exit(code);
 }
 
-void
-usage()
+static void
+usage(void)
 {
fprintf(stderr, "usage: %s -s signature [-v version] [-r region] [-k 
uImage part size] -i  -o \n", progname);
exit(1);
@@ -92,7 +92,7 @@ main(int ac, char *av[])
char region[MAX_REG_LEN];
int kernel = 0;
 
-   FILE *ifile, *ofile;
+   FILE *ifile = NULL, *ofile = NULL;
int c;
 
uint32_t cksum;
@@ -138,7 +138,7 @@ main(int ac, char *av[])
strncpy(region, optarg, MAX_REG_LEN);
break;
case 'k':
-   kernel = strtoul(optarg, , 0);
+   kernel = strtol(optarg, , 0);
if(ptr[0] == 'k'){
kernel *= 1000;
}
@@ -156,10 +156,8 @@ main(int ac, char *av[])
}
}
 
-   if (signature[0] == 0 || ifile == NULL || ofile == NULL) {
+   if (signature[0] == 0 || ifile == NULL || ofile == NULL)
usage();
-   exit(1);
-   }
 
for (bcnt = 0, cksum = 0 ; (c = fgetc(ifile)) != EOF ; bcnt++)
cksum += c & 0xff;
@@ -178,7 +176,7 @@ main(int ac, char *av[])
strncpy(imghdr.fw_ver, version, MAX_FW_VER_LEN);
strncpy(imghdr.fw_reg, region, MAX_REG_LEN);
 
-   if (fwrite(, sizeof(imghdr), 1, ofile) < 0)
+   if (fwrite(, sizeof(imghdr), 1, ofile) != 1)
perrexit(2, "fwrite header on output");
 
while ((c = fgetc(ifile)) != EOF) {
-- 
2.7.4


___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] [PATCH 1/2] firmware-utils: mkdapimg2: Fix potential buffer overflow

2018-04-22 Thread Rosen Penev
If GCC is built with stack smashing protection enabled (SSP), it errors when 
compiling lzma-loader.

Switching to strncpy seems to be an easy way to fix this. It's probably better 
to use snprintf or strlcpy but the latter is not available for glibc systems.

Output of crash below:

*** buffer overflow detected ***: 
/home/mangix/devstuff/openwrt/staging_dir/host/bin/mkdapimg2 terminated
=== Backtrace: =
/lib/x86_64-linux-gnu/libc.so.6(+0x777e5)[0x7f6318ea77e5]
/lib/x86_64-linux-gnu/libc.so.6(__fortify_fail+0x5c)[0x7f6318f4915c]
/lib/x86_64-linux-gnu/libc.so.6(+0x117160)[0x7f6318f47160]
/home/mangix/devstuff/openwrt/staging_dir/host/bin/mkdapimg2[0x400ab7]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf0)[0x7f6318e50830]
/home/mangix/devstuff/openwrt/staging_dir/host/bin/mkdapimg2[0x400e69]
=== Memory map: 
0040-00402000 r-xp  00:00 223275 
/home/mangix/devstuff/openwrt/staging_dir/host/bin/mkdapimg200601000-00602000 
r--p 1000 00:00 223275 
/home/mangix/devstuff/openwrt/staging_dir/host/bin/mkdapimg200602000-00603000 
rw-p 2000 00:00 223275 
/home/mangix/devstuff/openwrt/staging_dir/host/bin/mkdapimg2018c2000-018e3000 
rw-p  00:00 0  [heap]
7f6318c1-7f6318c26000 r-xp  00:00 122040 
/lib/x86_64-linux-gnu/libgcc_s.so.1
7f6318c26000-7f6318e25000 ---p 00016000 00:00 122040 
/lib/x86_64-linux-gnu/libgcc_s.so.1
7f6318e25000-7f6318e26000 rw-p 00015000 00:00 122040 
/lib/x86_64-linux-gnu/libgcc_s.so.1
7f6318e3-7f6318ff r-xp  00:00 123971 
/lib/x86_64-linux-gnu/libc-2.23.so
7f6318ff-7f6318ff9000 ---p 001c 00:00 123971 
/lib/x86_64-linux-gnu/libc-2.23.so
7f6318ff9000-7f63191f ---p 001c9000 00:00 123971 
/lib/x86_64-linux-gnu/libc-2.23.so
7f63191f-7f63191f4000 r--p 001c 00:00 123971 
/lib/x86_64-linux-gnu/libc-2.23.so
7f63191f4000-7f63191f6000 rw-p 001c4000 00:00 123971 
/lib/x86_64-linux-gnu/libc-2.23.so
7f63191f6000-7f63191fa000 rw-p  00:00 0
7f631920-7f6319226000 r-xp  00:00 123969 
/lib/x86_64-linux-gnu/ld-2.23.so
7f6319425000-7f6319426000 r--p 00025000 00:00 123969 
/lib/x86_64-linux-gnu/ld-2.23.so
7f6319426000-7f6319427000 rw-p 00026000 00:00 123969 
/lib/x86_64-linux-gnu/ld-2.23.so
7f6319427000-7f6319428000 rw-p  00:00 0
7f631946-7f6319461000 rw-p  00:00 0
7f631947-7f6319471000 rw-p  00:00 0
7f631948-7f6319481000 rw-p  00:00 0
7f631949-7f6319491000 rw-p  00:00 0
7fffca52e000-7fffcad2e000 rw-p  00:00 0  [stack]
7fffcb121000-7fffcb122000 r-xp  00:00 0  [vdso]
make -r world: build failed. Please re-run make with -j1 V=s to see what's 
going on

Signed-off-by: Rosen Penev 
---
 tools/firmware-utils/src/mkdapimg2.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/tools/firmware-utils/src/mkdapimg2.c 
b/tools/firmware-utils/src/mkdapimg2.c
index aef003c..59c9f00 100644
--- a/tools/firmware-utils/src/mkdapimg2.c
+++ b/tools/firmware-utils/src/mkdapimg2.c
@@ -119,7 +119,7 @@ main(int ac, char *av[])
progname, MAX_SIGN_LEN);
exit(1);
}
-   strcpy(signature, optarg);
+   strncpy(signature, optarg, MAX_SIGN_LEN);
break;
case 'v':
if (strlen(optarg) > MAX_FW_VER_LEN + 1) {
@@ -127,7 +127,7 @@ main(int ac, char *av[])
progname, MAX_FW_VER_LEN);
exit(1);
}
-   strcpy(version, optarg);
+   strncpy(version, optarg, MAX_FW_VER_LEN);
break;
case 'r':
if (strlen(optarg) > MAX_REG_LEN + 1) {
@@ -135,7 +135,7 @@ main(int ac, char *av[])
progname, MAX_REG_LEN);
exit(1);
}
-   strcpy(region, optarg);
+   strncpy(region, optarg, MAX_REG_LEN);
break;
case 'k':
kernel = strtoul(optarg, , 0);
-- 
2.7.4


___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


[LEDE-DEV] Transmit timeouts on MT7621 with kernel 4.14

2018-04-22 Thread Kristian Evensen
Hello,

I have been doing some tests with kernel 4.14 on some MT7621-based
devices (ZBT WG2926 and WG3526). Sometimes, seemingly out of the blue,
I get the following oops:

[   95.073332] [ cut here ]
[   95.077988] WARNING: CPU: 1 PID: 0 at net/sched/sch_generic.c:320
dev_watchdog+0x1ac/0x324
[   95.086240] NETDEV WATCHDOG: eth0 (mtk_soc_eth): transmit queue 0 timed out
[   95.093166] Modules linked in: rt2800pci rt2800mmio rt2800lib
qcserial ppp_async option usb_wwan rt2x00pci rt2x00mmio rt2x00lib
rndis_host qmi_wwan ppp_generic nf_nat_pptp nf_conntrack_pptp
nf_conntrack_ipv6 mt76x2e mt7603e mt76 mac80211 iptable_nat ipt_REJECT
ipt_MASQUERADE huawei_cdc_ncm cfg80211 cdc_ncm cdc_ether ax88179_178a
asix xt_time xt_tcpudp xt_tcpmss xt_string xt_statistic xt_state
xt_recent xt_quota xt_policy xt_pkttype xt_owner xt_nfacct xt_nat
xt_multiport xt_mark xt_mac xt_limit xt_length xt_hl xt_helper xt_esp
xt_ecn xt_dscp xt_conntrack xt_connmark xt_connlimit xt_connlabel
xt_connbytes xt_comment xt_addrtype xt_TCPMSS xt_REDIRECT xt_NFQUEUE
xt_LOG xt_HL xt_FLOWOFFLOAD xt_DSCP xt_CT xt_CLASSIFY usbserial usbnet
ts_fsm ts_bm slhc nfnetlink_queue nfnetlink_acct nf_reject_ipv4
nf_nat_tftp
[   95.164255]  nf_nat_snmp_basic nf_nat_sip nf_nat_redirect
nf_nat_proto_gre nf_nat_masquerade_ipv4 nf_nat_irc nf_conntrack_ipv4
nf_nat_ipv4 nf_nat_h323 nf_nat_ftp nf_nat_amanda nf_nat nf_log_ipv4
nf_flow_table_hw nf_flow_table nf_defrag_ipv6 nf_defrag_ipv4
nf_conntrack_tftp nf_conntrack_snmp nf_conntrack_sip
nf_conntrack_rtcache nf_conntrack_proto_gre nf_conntrack_netlink
nf_conntrack_irc nf_conntrack_h323 nf_conntrack_ftp
nf_conntrack_broadcast ts_kmp nf_conntrack_amanda iptable_raw
iptable_mangle iptable_filter ipt_ah ipt_ECN ip6table_raw ip_tables
crc_itu_t crc_ccitt compat_xtables compat cdc_wdm cdc_acm br_netfilter
sch_cake act_connmark nf_conntrack act_skbedit act_mirred em_u32
cls_u32 cls_tcindex cls_flow cls_route cls_fw sch_tbf sch_htb sch_hfsc
sch_ingress ledtrig_usbport xt_set ip_set_list_set
[   95.235207]  ip_set_hash_netiface ip_set_hash_netport
ip_set_hash_netnet ip_set_hash_net ip_set_hash_netportnet
ip_set_hash_mac ip_set_hash_ipportnet ip_set_hash_ipportip
ip_set_hash_ipport ip_set_hash_ipmark ip_set_hash_ip
ip_set_bitmap_port ip_set_bitmap_ipmac ip_set_bitmap_ip ip_set
nfnetlink ip6t_REJECT nf_reject_ipv6 nf_log_ipv6 nf_log_common
ip6table_mangle ip6table_filter ip6_tables x_tables ifb ipcomp6
xfrm6_tunnel xfrm6_mode_tunnel xfrm6_mode_transport xfrm6_mode_beet
esp6 ah6 ipcomp xfrm4_tunnel xfrm4_mode_tunnel xfrm4_mode_transport
xfrm4_mode_beet esp4 ah4 tunnel6 tunnel4 tun af_key xfrm_user
xfrm_ipcomp xfrm_algo eeprom_93cx6 sha256_generic sha1_generic
jitterentropy_rng drbg md5 hmac echainiv des_generic cmac cbc authenc
leds_gpio xhci_mtk xhci_plat_hcd xhci_pci xhci_hcd uhci_hcd
ohci_platform
[   95.306669]  ohci_hcd ehci_platform sd_mod scsi_mod ehci_hcd
gpio_button_hotplug usbcore nls_base usb_common mii
[   95.316933] CPU: 1 PID: 0 Comm: swapper/1 Not tainted 4.14.34 #0
[   95.322940] Stack :     805c7ada
0034  8052c54c
[   95.331300] 8fc441f4 805668e7 804f5a2c 0001 
0001 8fc0dd68 0007
[   95.339655]   805c 7cd0 
0165 0007 
[   95.348003]  8057 0004d605  
 8059 8034d5a8
[   95.356355] 0009 0140 0001 8ff15940 0003
8027c368 0004 805c0004
[   95.364707] ...
[   95.367150] Call Trace:
[   95.369622] [<800103e8>] show_stack+0x58/0x100
[   95.374080] [<8043bfcc>] dump_stack+0x9c/0xe0
[   95.378428] [<8002e170>] __warn+0xe0/0x114
[   95.382511] [<8002e1d4>] warn_slowpath_fmt+0x30/0x3c
[   95.387476] [<8034d5a8>] dev_watchdog+0x1ac/0x324
[   95.392184] [<80085b94>] call_timer_fn.isra.3+0x24/0x84
[   95.397395] [<80085dac>] run_timer_softirq+0x1b8/0x244
[   95.402543] [<804590d0>] __do_softirq+0x128/0x2ec
[   95.407241] [<80032870>] irq_exit+0x98/0xcc
[   95.411434] [<8023944c>] plat_irq_dispatch+0xfc/0x138
[   95.416477] [<8000b508>] except_vec_vi_end+0xb8/0xc4
[   95.421427] [<8000ced0>] r4k_wait_irqoff+0x1c/0x24
[   95.426230] [<80065f3c>] do_idle+0xe4/0x168
[   95.430402] [<800661b8>] cpu_startup_entry+0x24/0x2c
[   95.435451] ---[ end trace b6fed008f9c0705a ]---
[   95.440096] mtk_soc_eth 1e10.ethernet eth0: transmit timed out
[   95.446363] mtk_soc_eth 1e10.ethernet eth0: dma_cfg:8067
[   95.452456] mtk_soc_eth 1e10.ethernet eth0: tx_ring=0,
base=0e84, max=0, ctx=1241, dtx=1164, fdx=1164, next=1241
[   95.463414] mtk_soc_eth 1e10.ethernet eth0: rx_ring=0,
base=0e7c, max=0, calc=1472, drx=1473
[   95.78] mtk_soc_eth 1e10.ethernet eth0: port 3 link down
[   95.745171] mtk_soc_eth 1e10.ethernet eth0: port 4 link down
[   95.886802] mtk_soc_eth 1e10.ethernet: 0x100 = 0x5160030c,
0x10c = 0x80818
[   95.908574] mtk_soc_eth 1e10.ethernet: PPE 

Re: [LEDE-DEV] Ubnt Bullet M2 flashing ?

2018-04-22 Thread Russell Senior
> "Bill" == Bill Moffitt  writes:

Etienne> Is it still possible to flash latest ubnt bullet m2 with
Etienne> OpenWRT?  (AirOS 6.X) Is it possible to downgrade to 5.5.10
Etienne> from the 6.X versions ? is it still required ?

Bill> I have not been able to figure out a way to do it.

It seems to be possible to flash an older bootloader with an external
programmer.  It is possible to obtain the older bootloader from another
device.  It should be possible (but isn't due to apparently GPL
violation, at least, the last time I checked) to obtain the 5.5.x u-boot
source from Ubiquiti.


-- 
Russell Senior
russ...@personaltelco.net

___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev


Re: [LEDE-DEV] [PATCH v2 1/5] tools/zlib: move zlib build to tools

2018-04-22 Thread Hauke Mehrtens
On 04/20/2018 12:12 AM, Hauke Mehrtens wrote:
> This allows us to link the other tools against our libz and we do not
> need the system zlib any more.
> 
> Only the static linked library is copied to the staging directory so we
> have a statically linked library on all systems and not only on Linux.
> This also adds the new dependencies of the packages which are depending
> on zlib.
> 
> Signed-off-by: Hauke Mehrtens 
> ---
> 
> changes since v1:
> * add HOST_CFLAGS +=-fPIC
> 
>  include/prereq-build.mk |  5 ---
>  package/libs/zlib/Makefile  |  2 --
>  tools/Makefile  | 14 ++---
>  tools/lzma-old/Makefile |  2 ++
>  tools/lzma-old/patches/120-add-cflags.patch | 11 +++
>  tools/make-ext4fs/Makefile  |  8 +
>  tools/make-ext4fs/patches/100-add-ldflags.patch | 11 +++
>  tools/squashfs4/Makefile|  2 +-
>  tools/zlib/Makefile | 41 
> +
>  9 files changed, 76 insertions(+), 20 deletions(-)
>  create mode 100644 tools/lzma-old/patches/120-add-cflags.patch
>  create mode 100644 tools/make-ext4fs/patches/100-add-ldflags.patch
>  create mode 100644 tools/zlib/Makefile
> 
> diff --git a/include/prereq-build.mk b/include/prereq-build.mk
> index 6917716342..5b9a7e049d 100644
> --- a/include/prereq-build.mk
> +++ b/include/prereq-build.mk
> @@ -76,11 +76,6 @@ else
>zlib_link_flags := -lz
>  endif
>  
> -$(eval $(call TestHostCommand,zlib, \
> - Please install a static zlib. (Missing libz.a or zlib.h), \
> - echo 'int main(int argc, char **argv) { gzdopen(0, "rb"); return 0; }' 
> | \
> - gcc -include zlib.h -x c -o $(TMP_DIR)/a.out - 
> $(zlib_link_flags)))
> -
>  $(eval $(call TestHostCommand,perl-thread-queue, \
>   Please install the Perl Thread::Queue module, \
>   perl -MThread::Queue -e 1))
> diff --git a/package/libs/zlib/Makefile b/package/libs/zlib/Makefile
> index a7c61f7dd0..4a2a0e53b0 100644
> --- a/package/libs/zlib/Makefile
> +++ b/package/libs/zlib/Makefile
> @@ -21,7 +21,6 @@ PKG_CPE_ID:=cpe:/a:gnu:zlib
>  
>  PKG_CONFIG_DEPENDS:= CONFIG_ZLIB_OPTIMIZE_SPEED
>  
> -include $(INCLUDE_DIR)/host-build.mk
>  include $(INCLUDE_DIR)/package.mk
>  include $(INCLUDE_DIR)/cmake.mk
>  
> @@ -95,6 +94,5 @@ define Package/zlib-dev/install
> $(1)/usr/lib/pkgconfig/
>  endef
>  
> -$(eval $(call HostBuild))
>  $(eval $(call BuildPackage,zlib))
>  $(eval $(call BuildPackage,zlib-dev))
> diff --git a/tools/Makefile b/tools/Makefile
> index 50bd552d75..8dfab9892b 100644
> --- a/tools/Makefile
> +++ b/tools/Makefile
> @@ -22,7 +22,7 @@ ifneq 
> ($(CONFIG_SDK)$(CONFIG_PACKAGE_kmod-b43)$(CONFIG_PACKAGE_b43legacy-firmwar
>  endif
>  
>  tools-$(BUILD_TOOLCHAIN) += gmp mpfr mpc libelf expat
> -tools-y += m4 libtool autoconf automake flex bison pkg-config mklibs
> +tools-y += m4 libtool autoconf automake flex bison pkg-config mklibs zlib
>  tools-y += sstrip make-ext4fs e2fsprogs mtd-utils mkimage
>  tools-y += firmware-utils patch-image quilt padjffs2
>  tools-y += mm-macros missing-macros cmake scons bc findutils gengetopt 
> patchelf
> @@ -43,16 +43,16 @@ $(curdir)/bison/compile := $(curdir)/flex/compile
>  $(curdir)/flex/compile := $(curdir)/libtool/compile
>  $(curdir)/libtool/compile := $(curdir)/m4/compile $(curdir)/autoconf/compile 
> $(curdir)/automake/compile $(curdir)/missing-macros/compile
>  $(curdir)/squashfs/compile := $(curdir)/lzma-old/compile
> -$(curdir)/squashfs4/compile := $(curdir)/xz/compile
> +$(curdir)/squashfs4/compile := $(curdir)/xz/compile $(curdir)/zlib/compile
>  $(curdir)/quilt/compile := $(curdir)/autoconf/compile 
> $(curdir)/findutils/compile
>  $(curdir)/autoconf/compile := $(curdir)/m4/compile
>  $(curdir)/automake/compile := $(curdir)/m4/compile 
> $(curdir)/autoconf/compile $(curdir)/pkg-config/compile $(curdir)/xz/compile
>  $(curdir)/gmp/compile := $(curdir)/libtool/compile
>  $(curdir)/mpc/compile := $(curdir)/mpfr/compile $(curdir)/gmp/compile
>  $(curdir)/mpfr/compile := $(curdir)/gmp/compile
> -$(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/compile
> +$(curdir)/mtd-utils/compile := $(curdir)/e2fsprogs/compile 
> $(curdir)/zlib/compile
>  $(curdir)/mklibs/compile := $(curdir)/libtool/compile
> -$(curdir)/qemu/compile := $(curdir)/e2fsprogs/compile
> +$(curdir)/qemu/compile := $(curdir)/e2fsprogs/compile $(curdir)/zlib/compile
>  $(curdir)/upslug2/compile := $(curdir)/libtool/compile
>  $(curdir)/mm-macros/compile := $(curdir)/libtool/compile
>  $(curdir)/missing-macros/compile := $(curdir)/autoconf/compile
> @@ -69,8 +69,12 @@ $(curdir)/patchelf/compile := $(curdir)/libtool/compile
>  $(curdir)/dosfstools/compile := $(curdir)/autoconf/compile 
> $(curdir)/automake/compile
>  $(curdir)/libressl/compile := $(curdir)/pkg-config/compile
>  $(curdir)/mkimage/compile += $(curdir)/libressl/compile
> 

[LEDE-DEV] [PATCH] iftop: bump to latest

2018-04-22 Thread Kevin Darbyshire-Bryant via Lede-dev
The sender domain has a DMARC Reject/Quarantine policy which disallows
sending mailing list messages using the original "From" header.

To mitigate this problem, the original message has been wrapped
automatically by the mailing list software.--- Begin Message ---
Choose first running interface, rather than first "up" interface (Redhat 
#1403025)

Signed-off-by: Kevin Darbyshire-Bryant 
---
 package/network/utils/iftop/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/package/network/utils/iftop/Makefile 
b/package/network/utils/iftop/Makefile
index 8c5b47444f..ed22eb81b1 100644
--- a/package/network/utils/iftop/Makefile
+++ b/package/network/utils/iftop/Makefile
@@ -12,9 +12,9 @@ PKG_RELEASE:=1
 
 PKG_SOURCE_PROTO:=git
 PKG_SOURCE_URL:=https://code.blinkace.com/pdw/iftop.git
-PKG_SOURCE_DATE:=2017-02-06
-PKG_SOURCE_VERSION:=35af3cf65f17961d173b31fd3b00166ec095c226
-PKG_MIRROR_HASH:=84131e2448ea5aa884d2bd7d58dc81741b5c476b4664a8c2c1eb34f62985804a
+PKG_SOURCE_DATE:=2017-03-22
+PKG_SOURCE_VERSION:=949ed0f7e2c54c598868c270b82c2d702131a339
+PKG_MIRROR_HASH:=2ba96d9a2adf4e43aaab439a9ccab8f21b415da48d1c8939f6dcea8e6e11524f
 PKG_MAINTAINER:=Jo-Philipp Wich 
 PKG_LICENSE:=GPL-2.0
 
-- 
2.15.1 (Apple Git-101)


--- End Message ---
___
Lede-dev mailing list
Lede-dev@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/lede-dev