Re: [ptxdist] Can packages be build w/o installing them on the rootfs?

2017-09-28 Thread Juergen Borleis
Hi Andreas, On Thursday 28 September 2017 15:12:34 Ian Abbott wrote: > > We have a platform application and one to three dynamic libraries > > that, if present, are loaded into the platform to extend its > > functionality. The finished product with be sold in three grades, base > > advanced and

Re: [ptxdist] Can packages be build w/o installing them on the rootfs?

2017-09-28 Thread Ian Abbott
On 28/09/17 11:49, Andreas Glatz wrote: Hi We have a platform application and one to three dynamic libraries that, if present, are loaded into the platform to extend its functionality. The finished product with be sold in three grades, base advanced and full. The base version should only

[ptxdist] [PATCH v2] cryptsetup: new package

2017-09-28 Thread Sascha Hauer
This adds support for the cryptsetup tools to ptxdist. Cryptsetup is a utility used to conveniently setup disk encryption based on DMCrypt kernel module. Signed-off-by: Sascha Hauer --- changes since v1: - Make crypto backend configurable - Remove configure options that

[ptxdist] Can packages be build w/o installing them on the rootfs?

2017-09-28 Thread Andreas Glatz
Hi We have a platform application and one to three dynamic libraries that, if present, are loaded into the platform to extend its functionality. The finished product with be sold in three grades, base advanced and full. The base version should only contain the platform application, and base

[ptxdist] [PATCH] timezone: remove legacy '/etc/timezone' file

2017-09-28 Thread Juergen Borleis
This file and its content is deprecated since '/usr' and its content is mandatory. Thus, the replacement '/etc/localtime' works always and is used and manipulated by the systemd tools. Signed-off-by: Juergen Borleis --- rules/timezone.make | 3 --- 1 file changed, 3

[ptxdist] [PATCH v2 2/2] luaexpat: Add license information.

2017-09-28 Thread Denis OSTERLAND
README tells luaexpact use Lua license, so use license information from Lua. Signed-off-by: Denis Osterland --- rules/luaexpat.make | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rules/luaexpat.make b/rules/luaexpat.make index c06f2fd..47b12e6

[ptxdist] [PATCH v2 1/2] luaexpat: version bump 1.2.0 -> 1.3.0

2017-09-28 Thread Denis OSTERLAND
Remove -ansi flag from Makefile, because lua 5.3.4 is not configured for C89. Update makefile variables. Signed-off-by: Denis Osterland --- rules/luaexpat.make | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/rules/luaexpat.make

[ptxdist] [PATCH v2 0/2] luaexpat: version bump 1.2.0 -> 1.3.0

2017-09-28 Thread Denis OSTERLAND
v2: - Adapt install directory form 5.1 to 5.3 - Adapt LUA_VERSION define from 501 to 503 Diehl AKO Stiftung & Co. KG, Pfannerstraße 75-83, 88239 Wangen im Allgäu Bereichsvorstand: Dipl.-Ing. Michael Siedentop (Sprecher), Josef Fellner (Mitglied) Sitz der Gesellschaft: Wangen i.A. –

[ptxdist] [PATCH] iptables: fix large file support

2017-09-28 Thread Juergen Borleis
The configure script handles the "--*-largefile" parameter badly. It defaults to large file support if not given and always disables largefile support if given (and it doesn't matter if 'enable' or 'disable' was used) Signed-off-by: Juergen Borleis ---

[ptxdist] [PATCH 3/3] sudo: force the system zlib

2017-09-28 Thread Juergen Borleis
'sudo' uses zlib compression for its logs. It brings its own local version of zlib, but prefers the system zlib if present. This change forces the presence of the system zlib to avoid the internal variant by accident depending on the build order. Signed-off-by: Juergen Borleis

[ptxdist] [PATCH 2/3] sudo: add missing run-time dependencies

2017-09-28 Thread Juergen Borleis
libutil and libdl must be present at run-time. Signed-off-by: Juergen Borleis --- rules/sudo.in | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rules/sudo.in b/rules/sudo.in index f3531425f..154be73d0 100644 --- a/rules/sudo.in +++ b/rules/sudo.in @@ -3,6 +3,8 @@

[ptxdist] [PATCH 1/3] sudo: provide 'sudoers.d' for individual user files

2017-09-28 Thread Juergen Borleis
The 'sudoers.d' provides a more flexible way to install individual and independent permission files without using a shared single '/etc/sudoers' file. Signed-off-by: Juergen Borleis --- projectroot/etc/sudoers | 3 +++ rules/sudo.make | 1 + 2 files changed, 4

[ptxdist] [PATCH] screen: Fix ptxdist error message.

2017-09-28 Thread Denis OSTERLAND
Copy from causes this error message: ptxdist: error: file 'BSP/platform-Name/packages/screen-4.5.0/usr/bin/screen' is a link Install it from link target, to avoid error message. Signed-off-by: Denis Osterland --- rules/screen.make | 4 +++- 1 file changed, 3