Re: [ptxdist] [PATCH] install optional symlinks from sendmail to ssmtp

2012-06-29 Thread Alexander Dahl
Hei hei, >> +ifdef PTXCONF_SSMTP_SENDMAIL >> +@$(call install_link, ssmtp, /sbin/ssmtp, /usr/sbin/sendmail) >> +@$(call install_link, ssmtp, ../sbin/sendmail, /usr/lib/sendmail) >> +endif > > > Why one time relative, the other time not? Plus, isn't ptxdists > install_link mechanism rela

Re: [ptxdist] [PATCHv2] fbtest: Make its build-system aware of external CFLAGS and LDFLAGS

2012-06-29 Thread Michael Olbrich
On Fri, Jun 29, 2012 at 04:44:34PM +0200, Juergen Beisert wrote: > Signed-off-by: Juergen Beisert > > diff --git > a/patches/fbtest-20041102-1/0006-Let-the-build-system-honor-external-defined-CFLAGS-a.patch > > b/patches/fbtest-20041102-1/0006-Let-the-build-system-honor-external-defined-CFLAGS

[ptxdist] [PATCHv2] fbtest: Make its build-system aware of external CFLAGS and LDFLAGS

2012-06-29 Thread Juergen Beisert
Signed-off-by: Juergen Beisert diff --git a/patches/fbtest-20041102-1/0006-Let-the-build-system-honor-external-defined-CFLAGS-a.patch b/patches/fbtest-20041102-1/0006-Let-the-build-system-honor-external-defined-CFLAGS-a.patch new file mode 100644 index 000..079a3a7 --- /dev/null +++ b/pat

Re: [ptxdist] [PATCH] fbtest: Make its build-system aware of external CFLAGS and LDFLAGS

2012-06-29 Thread Juergen Beisert
Michael Olbrich wrote: > [...] > > + > > + $(TARGET):$(OBJS) > > +- $(CC) -o $(TARGET) $(filter $(OBJS), $^) $(LIBS) > > ++ $(CC) -o $(TARGET) $(filter $(OBJS), $^) $(LIBS) $(LDFLAGS) > > $(CC) $(LDFLAGS) -o $(TARGET) $(filter $(OBJS), $^) $(LIBS) > > I think

Re: [ptxdist] [PATCH] fbtest: Make its build-system aware of external CFLAGS and LDFLAGS

2012-06-29 Thread Michael Olbrich
On Tue, Jun 26, 2012 at 03:41:50PM +0200, Juergen Beisert wrote: > Signed-off-by: Juergen Beisert > > diff --git > a/patches/fbtest-20041102-1/0006-Let-the-build-system-honor-external-defined-CFLAGS-a.patch > > b/patches/fbtest-20041102-1/0006-Let-the-build-system-honor-external-defined-CFLAGS

[ptxdist] [PATCHv2] dosfstools: Fix missing environment forwarding

2012-06-29 Thread Juergen Beisert
With the current rule file, PTXdist does not forward any of the required environment variables. Only the DOSFSTOOLS_MAKEVARS settings are used to build the tools, so at least the correct compiler was used, but not the correct header and library include paths for example. Signed-off-by: Juergen Bei

Re: [ptxdist] [PATCH] dosfstools: Fix missing environment forwarding

2012-06-29 Thread Juergen Beisert
Michael Olbrich wrote: > [...] > > diff --git a/rules/dosfstools.make b/rules/dosfstools.make > > index 5b9c527..87f6c20 100644 > > --- a/rules/dosfstools.make > > +++ b/rules/dosfstools.make > > @@ -27,21 +27,30 @@ DOSFSTOOLS_SOURCE := $(SRCDIR)/$(DOSFSTOOLS_SRC) > > DOSFSTOOLS_DIR

Re: [ptxdist] [PATCH] dosfstools: Fix missing environment forwarding

2012-06-29 Thread Michael Olbrich
On Tue, Jun 26, 2012 at 03:20:47PM +0200, Juergen Beisert wrote: > With the current rule file, PTXdist does not forward any of the required > environment variables. Only the DOSFSTOOLS_MAKEVARS settings are used to > build the tools, so at least the correct compiler was used, but not the > correct

Re: [ptxdist] PTXdist build help on TQma53 please

2012-06-29 Thread Robert Schwebel
Hi, On Fri, Jun 29, 2012 at 10:30:35AM +0100, Xizhou Wang wrote: > Plan to transfer a project from i.MX53-QSB kit and LTIB build system to TQma53 > module using the PTXdist tool. I managed to create the image for the SD card > based on the BSP supplied with the board (the BSP is not officially rel

[ptxdist] PTXdist build help on TQma53 please

2012-06-29 Thread Xizhou Wang
Hello Plan to transfer a project from i.MX53-QSB kit and LTIB build system to TQma53 module using the PTXdist tool. I managed to create the image for the SD card based on the BSP supplied with the board (the BSP is not officially released yet). The original hd.image work fine can boot the TQ k

Re: [ptxdist] [PATCH] install optional symlinks from sendmail to ssmtp

2012-06-29 Thread Josef Holzmayr
Howdy! Am 28.06.2012 20:04, schrieb Alexander Dahl: +ifdef PTXCONF_SSMTP_SENDMAIL + @$(call install_link, ssmtp, /sbin/ssmtp, /usr/sbin/sendmail) + @$(call install_link, ssmtp, ../sbin/sendmail, /usr/lib/sendmail) +endif Why one time relative, the other time not? Plus, isn't ptxd