[OpenWrt-Devel] SHA256 hashes for packages

2017-01-05 Thread Heinrich Schuchardt
openwrt releases. If you want an SHA256 hash, please, use an SHA256 variable. This was already pointed out in https://bugs.lede-project.org/index.php?do=details&task_id=326&order=id&sort=asc&order2=summary&sort2=desc Anyway it is safer to use multiple hashes. Best regards Heinric

[OpenWrt-Devel] [RFC] Use CONFIG_USE_STRIP=y as default

2016-07-10 Thread Heinrich Schuchardt
Currently the default for stripping when building Lede/OpenWRT is CONFIG_USE_SSTRIP=y. This has the following impacts: Linking with GCC against libraries on the OpenWRT device is impossible. Python packages like pyusb that dynamically link against C libraries cannot be used. Debugging with gdb

Re: [OpenWrt-Devel] [BUG] package/devel/valgrind: cannot build for sunxi

2016-07-04 Thread Heinrich Schuchardt
Debian has the following patch in http://http.debian.net/debian/pool/main/v/valgrind/valgrind_3.11.0-1.debian.tar.xz Description: Fix FTBFS on armhf by correctly detecting the architecture Origin: vendor Bug-Debian: http://bugs.debian.org/730844 Author: Alessandro Ghedini Last-Update: 2013-11-30

[OpenWrt-Devel] [BUG] package/devel/valgrind: cannot build for sunxi

2016-07-04 Thread Heinrich Schuchardt
t;arm" ;; I guess host_cpu should be set to arm_v7 for sunxi and i.mx6 targets. Best regards Heinrich Schuchardt ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH 1/1 v2] package/uhttpd: generate 2048 bit RSA key

2016-01-23 Thread Heinrich Schuchardt
RSA keys should be generated with sufficient length. Using 1024 bits is considered unsafe. In other packages the used key length is 2048 bits. Signed-off-by: Heinrich Schuchardt --- package/network/services/uhttpd/files/uhttpd.config | 2 +- package/network/services/uhttpd/files/uhttpd.init

[OpenWrt-Devel] [PATCH 1/1] uhttpd.init: generate 2048 bit RSA key

2016-01-23 Thread Heinrich Schuchardt
RSA keys should be generated with sufficient length. Using 1024 bits is considered unsafe. In other packages the used key length is 2048 bits. Signed-off-by: Heinrich Schuchardt --- package/network/services/uhttpd/files/uhttpd.init | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff

[OpenWrt-Devel] [PATCH 1/1] package/libs/libiconv: function names

2016-01-17 Thread Heinrich Schuchardt
same function names. cf. http://git.savannah.gnu.org/cgit/libiconv.git/tree/include/iconv.h.in After applying this patch execute make distclean Signed-off-by: Heinrich Schuchardt --- package/libs/libiconv/src/include/iconv.h | 4 1 file changed, 4 insertions(+) diff --git a

Re: [OpenWrt-Devel] [PATCH] Add @APACHE download facility

2016-01-17 Thread Heinrich Schuchardt
I would like to package subversion. The patch below is a prerequisite. Best regards Heinrich Schuchardt On 01/06/2016 09:30 PM, Heinrich Schuchardt wrote: > The Apache Software Foundation offers diverse download mirros. > > For packaging Apache software a new alias @APACHE i

[OpenWrt-Devel] [PATCH 1/1] include/autotools.mk: rename libtool to libltdl

2016-01-09 Thread Heinrich Schuchardt
dependencies for libtool are generated in autotools.mk. These have to be renamed to libltdl. CC: Daniel Dickinson CC: Felix Fietkau Signed-off-by: Heinrich Schuchardt --- include/autotools.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/autotools.mk b/i

[OpenWrt-Devel] [PATCH 1/1] package/libs/zlib: new package zlib-dev

2016-01-07 Thread Heinrich Schuchardt
The patch adds a new package zlib-dev. It contains all files needed for compiling a program using the zlib library: /usr/include/zconf.h /usr/include/zlib.h /usr/lib/libz.a /usr/lib/pkgconfig/zlib.pc Signed-off-by: Heinrich Schuchardt --- package/libs/zlib/Makefile | 32

[OpenWrt-Devel] [PATCH 1/1] KernelPackage/usb-net-sr9700: new package

2016-01-06 Thread Heinrich Schuchardt
Add support for CoreChip-sz SR9700 based USB 1.1 10/100 ethernet devices Signed-off-by: Heinrich Schuchardt --- package/kernel/linux/modules/usb.mk | 15 +++ 1 file changed, 15 insertions(+) diff --git a/package/kernel/linux/modules/usb.mk b/package/kernel/linux/modules/usb.mk

[OpenWrt-Devel] [PATCH] Add @APACHE download facility

2016-01-06 Thread Heinrich Schuchardt
The Apache Software Foundation offers diverse download mirros. For packaging Apache software a new alias @APACHE is defined. Signed-off-by: Heinrich Schuchardt --- include/download.mk | 2 +- scripts/download.pl | 6 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/include

[OpenWrt-Devel] [PATCH 1/1 v4] package/libs/libtool: rename to libltdl

2016-01-04 Thread Heinrich Schuchardt
contains the renaming. CC: Felix Fietkau Signed-off-by: Heinrich Schuchardt --- package/libs/libltdl/Makefile | 53 ++ .../libs/libltdl/patches/160-passthrough-ssp.patch | 11 + package/libs/libtool/Makefile | 52

[OpenWrt-Devel] [PATCH 1/1 v3] package/libs/libtool: rename to libltdl

2016-01-04 Thread Heinrich Schuchardt
contains the renaming. version 3 In Makefile change PKG_BUILD_DIR only, thx Felix. version 2 Renaming must occur inside Makefile too. CC: Felix Fietkau Signed-off-by: Heinrich Schuchardt --- package/libs/libltdl/Makefile | 53 ++ .../libs

Re: [OpenWrt-Devel] [PATCH 1/1 v2] package/libs/libtool: rename to libltdl

2016-01-03 Thread Heinrich Schuchardt
On 04.01.2016 01:43, Felix Fietkau wrote: > On 2016-01-04 01:34, Heinrich Schuchardt wrote: >> Source package libtool is used to package libltdl. >> Unfortunately binary libtoolize is missing. >> Packaging libtoolize would depend on package file which is in the >> pack

[OpenWrt-Devel] [PATCH 1/1 v2] package/libs/libtool: rename to libltdl

2016-01-03 Thread Heinrich Schuchardt
contains the renaming. version 2 Renaming must occur inside Makefile too. Signed-off-by: Heinrich Schuchardt --- package/libs/libltdl/Makefile | 60 ++ .../libs/libltdl/patches/160-passthrough-ssp.patch | 11 package/libs/libtool/Makefile

[OpenWrt-Devel] [PATCH 1/1] package/libs/libtool: rename to libltdl

2016-01-03 Thread Heinrich Schuchardt
contains the renaming. Signed-off-by: Heinrich Schuchardt --- package/libs/libltdl/Makefile | 52 ++ .../libs/libltdl/patches/160-passthrough-ssp.patch | 11 + package/libs/libtool/Makefile | 52 -- .../libs

[OpenWrt-Devel] [PATCH 1/1] package/libs/libtool: package libtool

2015-12-27 Thread Heinrich Schuchardt
Up to now only package libtldl is created form source package GNU libtool. A new package libtool containing libtoolize is provided. Signed-off-by: Heinrich Schuchardt --- package/libs/libtool/Makefile | 39 +++ 1 file changed, 39 insertions(+) diff --git a

Re: [OpenWrt-Devel] [PATCH] base-files utils/busybox: Make requiring login in console default for easily accessed devices

2015-12-23 Thread Heinrich Schuchardt
On 12/23/2015 08:54 AM, Daniel Dickinson wrote: > On 23/12/15 02:44 AM, Heinrich Schuchardt wrote: >> Hello Daniel, >> >> my TP-LINK MR3020 (AR71XX, OpenWrt 15.05) uses /dev/ttyATH0 as serial >> console . >> >> I could not find this device in the getty comman

Re: [OpenWrt-Devel] [PATCH] base-files utils/busybox: Make requiring login in console default for easily accessed devices

2015-12-22 Thread Heinrich Schuchardt
is be default on all targets? Best regards Heinrich Schuchardt On 23.12.2015 07:58, Daniel Dickinson wrote: > I am reworking this (requiring console login) as couple of packages for > the packages feed, although it may require an image.mk or packages > Makefile hook in order to embed an appro

Re: [OpenWrt-Devel] [PATCH 1/1] [package] GNU Make

2015-12-22 Thread Heinrich Schuchardt
On 22.12.2015 02:50, Yousong Zhou wrote: > On 22 December 2015 at 06:08, Heinrich Schuchardt wrote: >> OpenWRT provides gcc but lacks make. So building foreign software is >> difficult. >> > > GCC is provided as part of the OpenWrt packages feeds > (https://gi

[OpenWrt-Devel] tar: write: Broken pi

2015-12-21 Thread Heinrich Schuchardt
problem with the same file. Best regards Heinrich Schuchardt ___ openwrt-devel mailing list openwrt-devel@lists.openwrt.org https://lists.openwrt.org/cgi-bin/mailman/listinfo/openwrt-devel

[OpenWrt-Devel] [PATCH 1/1] [package] GNU Make

2015-12-21 Thread Heinrich Schuchardt
OpenWRT provides gcc but lacks make. So building foreign software is difficult. This patch provides GNU Make 4.1. Built on Debian Jessie amd64. Tested on TP-Link MR3020 (ar71xx/generic). Signed-off-by: Heinrich Schuchardt --- package/devel/make/Makefile | 52