[ptxdist] [PATCH v2] socat: version bump 1.7.3.0 => 1.7.3.2

2018-08-03 Thread jon
From: Jon Ringle Signed-off-by: Jon Ringle --- .../0001-Makefile.in-fix-for-parallel-build.patch | 26 -- patches/socat-1.7.3.0/series | 4 .../0001-Makefile.in-fix-for-parallel-build.patch | 26 ++

[ptxdist] [PATCH] socat: version bump 1.7.3.0 => 1.7.3.2

2018-08-03 Thread jon
From: Jon Ringle Signed-off-by: Jon Ringle --- rules/socat.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/socat.make b/rules/socat.make index f21d78b..9a8b322 100644 --- a/rules/socat.make +++ b/rules/socat.make @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_SOCAT) +=

[ptxdist] [PATCH v4 3/3] Allow local rules/*.in to source $(PTXDIST_TOPDIR)/rules/*.in

2018-08-03 Thread jon
From: Jon Ringle In scripts/kconfig/zconf.l the function zconf_fopen() is used to open files being opened via the `source` kconfig keyword. If it fails to open the given file, it will try to open the file under $(PTXDIST_TOPDIR) This allows a local rules/*.in to extend options to a that are

Re: [ptxdist] local rule makefile include $(PTXDIST_TOPDIR)/rules/...

2018-08-03 Thread Jon Ringle
Hi, I was able to solve my problem below :) I defined my local rules file as follows in order to "fool" the ptxd_is_pkg_makefile() function in scrips/lib/ptxd_make_world_check_src.sh: ~/git/rootfs$ cat rules/systemd.make # # We provide this package # OVERLAY_PACKAGES-$(PTXCONF_SYSTEMD) +=

[ptxdist] [PATCH v4 1/2] Add libfaketime as a core component of ptxdist for patchin support

2018-08-03 Thread jon
From: Jon Ringle libfaketime will be used during patchin so that committer timestamps always have a fixed value and therefore making the ${PKG}_SERIES_SHA256 value repeatable The minimal set of source files was picked out of libfaketime-0.9.7 Signed-off-by: Jon Ringle --- Makefile.in

[ptxdist] [PATCH v4 2/2] Detect changes in package patch series

2018-08-03 Thread jon
From: Jon Ringle For a long time it has bothered me that if a package's patches were changed ptxdist would not detect this change and I would often have old versions of *-dev.tar.gz packages that got used because the packages patches were updated. This commit solves this problem. Here's how it

Re: [ptxdist] [PATCH 3/3] host-lxc: add new hostside package

2018-08-03 Thread Michael Grzeschik
On Fri, Aug 03, 2018 at 03:33:56PM +0200, Michael Grzeschik wrote: > his package adds support to build the host side lxc package. > It allows to use the lxc-utils on the build host. > > To test if all necessary kernel options are enabled for the target > try the following command after building

Re: [ptxdist] [PATCH 1/3] busybox: don't install /sbin/init link if busybox is not the initmethod

2018-08-03 Thread Michael Grzeschik
On Fri, Aug 03, 2018 at 03:33:54PM +0200, Michael Grzeschik wrote: > This patch fixes the case where we use other initmethod then busybox and > want to enable the applet, but don't want to install the link. This is > useful to create busybox based lxc containers. > > Signed-off-by: Michael

[ptxdist] [PATCH 2/3] lxc: add new package

2018-08-03 Thread Michael Grzeschik
This patch adds support for the lxc container system. We install the userspace lib and application. We also add some small configuration to be able to create a busybox based lxc container. $ lxc-create -t busybox -n busybox01 $ lxc-start busybox01 $ cp /etc/shadow

[ptxdist] [PATCH 3/3] host-lxc: add new hostside package

2018-08-03 Thread Michael Grzeschik
his package adds support to build the host side lxc package. It allows to use the lxc-utils on the build host. To test if all necessary kernel options are enabled for the target try the following command after building the host-package. $ CONFIG=$(BSP)/config/platform-$(target)/kernelconfig \

[ptxdist] [PATCH 0/3] lxc: add support in ptxdist

2018-08-03 Thread Michael Grzeschik
This patchset adds support for the lxc package in ptxdist. It also makes it possible to enable busybox init without installing the applet if the initmethod is i.e. systemd. This way it is possible to use "lxc-create -t busybox" on the target to create a container. Michael Grzeschik (3):

[ptxdist] [PATCH 1/3] busybox: don't install /sbin/init link if busybox is not the initmethod

2018-08-03 Thread Michael Grzeschik
This patch fixes the case where we use other initmethod then busybox and want to enable the applet, but don't want to install the link. This is useful to create busybox based lxc containers. Signed-off-by: Michael Grzeschik --- rules/busybox.make | 11 +-- 1 file changed, 9

Re: [ptxdist] [PATCH v3] Detect changes in package patch series

2018-08-03 Thread Uwe Kleine-König
On Fri, Aug 03, 2018 at 05:02:03AM -0400, Jon Ringle wrote: > On Fri, Aug 3, 2018 at 4:51 AM Uwe Kleine-König < > u.kleine-koe...@pengutronix.de> wrote: > > > On Fri, Aug 03, 2018 at 04:41:56AM -0400, j...@ringle.org wrote: > > > From: Jon Ringle > > > > > > For a long time it has bothered me

Re: [ptxdist] [PATCH v3] Detect changes in package patch series

2018-08-03 Thread Jon Ringle
On Fri, Aug 3, 2018 at 4:51 AM Uwe Kleine-König < u.kleine-koe...@pengutronix.de> wrote: > On Fri, Aug 03, 2018 at 04:41:56AM -0400, j...@ringle.org wrote: > > From: Jon Ringle > > > > For a long time it has bothered me that if a package's patches were > changed > > ptxdist would not detect this

Re: [ptxdist] [PATCH v3] Detect changes in package patch series

2018-08-03 Thread Uwe Kleine-König
On Fri, Aug 03, 2018 at 04:41:56AM -0400, j...@ringle.org wrote: > From: Jon Ringle > > For a long time it has bothered me that if a package's patches were changed > ptxdist would not detect this change and I would often have old versions of > *-dev.tar.gz packages that got used because the

[ptxdist] [PATCH v3] Detect changes in package patch series

2018-08-03 Thread jon
From: Jon Ringle For a long time it has bothered me that if a package's patches were changed ptxdist would not detect this change and I would often have old versions of *-dev.tar.gz packages that got used because the packages patches were updated. This commit solves this problem. Here's how it

Re: [ptxdist] [PATCH v2] Detect changes in package patch series

2018-08-03 Thread Jon Ringle
On Fri, Aug 3, 2018 at 4:20 AM Alm, Michael wrote: > > Hi Jon, > > looks very useful. Just a little question: Does this only work when using > ptxdist together with git? Correct. The workflow for this uses the git-ptx-patches script which means you would need to do the patchin of packages with

[ptxdist] local rule makefile include $(PTXDIST_TOPDIR)/rules/...

2018-08-03 Thread Jon Ringle
Hi, As a follow up to my patch "Detect changes in package patch series", I'd like to be able to further this by having the ability to maintain my own patch series for a package without having to be forced to also maintain the package's rules makefile as well. To try to achieve this I tried having

Re: [ptxdist] [PATCH v2] Detect changes in package patch series

2018-08-03 Thread Alm, Michael
Hi Jon, looks very useful. Just a little question: Does this only work when using ptxdist together with git? Kind regards Michael -Ursprüngliche Nachricht- Von: ptxdist [mailto:ptxdist-boun...@pengutronix.de] Im Auftrag von j...@ringle.org Gesendet: Freitag, 3. August 2018 10:00 An:

[ptxdist] [PATCH v2] Detect changes in package patch series

2018-08-03 Thread jon
From: Jon Ringle For a long time it has bothered me that if a package's patches were changed ptxdist would not detect this change and I would often have old versions of *-dev.tar.gz packages that got used because the packages patches were updated. This commit solves this problem. Here's how it

Re: [ptxdist] [PATCH] Detect changes in package patch series

2018-08-03 Thread Jon Ringle
On Fri, Aug 3, 2018 at 3:36 AM Jon Ringle wrote: > > On Fri, Aug 3, 2018 at 3:19 AM Uwe Kleine-König > wrote: > > > > Hello Jon, > > > > On Thu, Aug 02, 2018 at 09:49:59PM -0400, j...@ringle.org wrote: > > > diff --git a/scripts/git-ptx-patches b/scripts/git-ptx-patches > > > index

Re: [ptxdist] [PATCH] Detect changes in package patch series

2018-08-03 Thread Jon Ringle
On Fri, Aug 3, 2018 at 3:19 AM Uwe Kleine-König wrote: > > Hello Jon, > > On Thu, Aug 02, 2018 at 09:49:59PM -0400, j...@ringle.org wrote: > > diff --git a/scripts/git-ptx-patches b/scripts/git-ptx-patches > > index f2568f9..738a4ac 100755 > > --- a/scripts/git-ptx-patches > > +++

Re: [ptxdist] [PATCH] Detect changes in package patch series

2018-08-03 Thread Uwe Kleine-König
Hello Jon, On Thu, Aug 02, 2018 at 09:49:59PM -0400, j...@ringle.org wrote: > diff --git a/scripts/git-ptx-patches b/scripts/git-ptx-patches > index f2568f9..738a4ac 100755 > --- a/scripts/git-ptx-patches > +++ b/scripts/git-ptx-patches > @@ -2,11 +2,33 @@ > > PTX_PATCHES_HEADER="# generated

Re: [ptxdist] [PATCH 23/23] xorg-fonts: make all xorg-font-ttf packages tristate

2018-08-03 Thread Uwe Kleine-König
On Thu, Aug 02, 2018 at 07:29:56AM +, Baeuerle, Florian wrote: > > BTW: Can you drop a few more words in the commit logs why you do this > > change? What is the intention? > > > > Once more sorry about that, I'm relatively new to git send-email and the > workflow > with mailing lists. I