Re: [ptxdist] [PATCH] cmake: add toolchain sysroot to search directive

2012-02-07 Thread Alexander Dahl
Hei hei, Am 2012-02-07 11:33, schrieb Josef Holzmayr: > -SET(CMAKE_FIND_ROOT_PATH @SYSROOT@) > +SET(CMAKE_FIND_ROOT_PATH @SYSROOT@ @SYSROOT_TOOLCHAIN@) > SYSROOT="${PTXDIST_PATH_SYSROOT_ALL//:/ }" \ > + SYSROOT_TOOLCHAIN="${PTXDIST_SYSROOT_TOOLCHAIN//:/ }" \ Ju

Re: [ptxdist] Advice on Directory Structure

2012-02-21 Thread Alexander Dahl
Hei Jerry, Am 2012-02-20 23:21, schrieb Jerry Kirk: > Our development will run the full breadth including new drivers, > patches to existing drivers, applications, etc. Speaking of VCS: we put each subproject in separate repositories and build ordinary ptxdist packages for it. So for application

Re: [ptxdist] Not reproducable bugs on compiling OSELAS Toolchain

2012-02-23 Thread Alexander Dahl
Hei Martin, Am 2012-02-23 13:39, schrieb Martin Breidung: > I got errors on compiling the toolchain OSELAS.Toolchain-2011.11.1. > > System: Ubuntu 11.10 Which architecture? `uname -m`? > On Ubuntu 10.4 LTS i got errors too withe OSELAS.Toolchain-2011.11.0. Same question, i686, x86_64, … ?? >

[ptxdist] [PATCH 1/2] dropbear: security update to version 2012.55

2012-03-13 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/dropbear.make |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/dropbear.make b/rules/dropbear.make index a3ba905..fe52ad8 100644 --- a/rules/dropbear.make +++ b/rules/dropbear.make @@ -18,8 +18,8 @@ PACKAGES

[ptxdist] [PATCH 2/2] file: security update to version 5.11

2012-03-13 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/file.make |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/file.make b/rules/file.make index 8840bc4..5c7d739 100644 --- a/rules/file.make +++ b/rules/file.make @@ -16,8 +16,8 @@ PACKAGES-$(PTXCONF_FILE) += file

Re: [ptxdist] [PATCH 1/2] dropbear: Delete old patches

2012-03-20 Thread Alexander Dahl
Am 2012-03-20 08:31, schrieb Bernhard Walle: > Seems to have been forgotten in the update > (d12c29b0e40e1d3affc0490d18599abaa48fca30). Sorry, I should have checked if there were patches for dropbear, before updating. :-/ Alex -- »With the first link, the chain is forged. The first speech censu

Re: [ptxdist] [PATCH] ptxdist: Don't assume that we have a bashrc

2012-03-20 Thread Alexander Dahl
Hei hei, Am 20.03.2012 20:46, schrieb Bernhard Walle: > Usually there is one, but don't print an error if there is no one. I'm using zsh, not bash, but still have ~/.bashrc … what does this code try to do in the first place and how does this affect users of other shells? Greets Alex -- »With t

Re: [ptxdist] [PATCH] ptxdist: Don't assume that we have a bashrc

2012-03-21 Thread Alexander Dahl
Hei hei, Am 21.03.2012 07:17, schrieb Bernhard Walle: >> I'm using zsh, not bash, but still have ~/.bashrc … what does this code >> try to do in the first place and how does this affect users of other shells? > > It only avoids two error messages when running "ptxdist bash" when the > files are n

[ptxdist] bbinit default order

2012-03-21 Thread Alexander Dahl
Hei hei, I'm currently experimenting with systemd. While switching between busybox init and systemd I got some default values for the symlinks created in /etc/rc.d in my ptxconfig. With the defaults I got some conflicts, e.g. there's S26networking and S16dropbear which leads to dropbear not start

Re: [ptxdist] [ANNOUNCE] PTXdist 2012.03.0 released

2012-03-22 Thread Alexander Dahl
Hei hei, Am 2012-03-12 09:49, schrieb Michael Olbrich: > I've released PTXdist 2012.03.0. Mostly bugfixes, but be careful when > updating: The udev package was rewritten. The previous 'experimental' > version is now the old version and udev 181 is now the default. > The new udev version requires

[ptxdist] [PATCH] add config and install symlink to let systemd load modules from /etc/modules

2012-03-26 Thread Alexander Dahl
systemd can statically load kernel modules at boot. This is done by placing appropriate files *.conf in /etc/modules-load.d. To be compatible with initmethod-busybox (e.g. if you switch between both) just a symlink to /etc/modules is created like Debian does, too. Signed-off-by: Alexander Dahl

[ptxdist] [PATCH] add /etc/timezone and replace content according to /etc/localtime

2012-03-27 Thread Alexander Dahl
a way you only have to put e.g. 'Europe/Berlin' to ptxdist menuconfig and symlink /etc/localtime and file /etc/timezone are created at build time. This patch is a suggestion which works for me, open for discussion. Signed-off-by: Alexander Dahl --- generic/etc/timezone |1 + ru

[ptxdist] console_name for systemd based systems

2012-03-28 Thread Alexander Dahl
Hei hei, moving along with systemd integration I came across an issue where I'm not sure how to integrate this nicely into ptxdist. Let me explain how this works for busysbox init at the moment: There's PTXCONF_CONSOLE_NAME in platformconfig. For our project it has the value /dev/ttyS0 because t

Re: [ptxdist] console_name for systemd based systems

2012-03-28 Thread Alexander Dahl
Hei Michael, Am 2012-03-28 11:26, schrieb Michael Olbrich: > I've never needed that with systemd. By default systemd will add such a > dependency for the tty the kernel uses for it's output. So if you boot with > "console=/dev/ttyS0" in the kernel commandline you should get a getty on > ttyS0. I

Re: [ptxdist] [PATCH] add config and install symlink to let systemd load modules from /etc/modules

2012-03-28 Thread Alexander Dahl
Hello Michael, Am 2012-03-28 11:48, schrieb Michael Olbrich: > PTXdist doesn't really support switching the initmethod at runtime. I'm aware of this. I guess there's no system like this and there's no need to. What I do is switching those for development, build a new image and test it afterward

Re: [ptxdist] console_name for systemd based systems

2012-03-28 Thread Alexander Dahl
Am 2012-03-28 12:44, schrieb Michael Olbrich: > Which kernel version? systemd uses /sys/class/tty/console/active to > determine where to start a getty. $ uname -r 2.6.36.4 (It's planned to upgrade to 3.0.x but we have to port the kernel module code for our own hardware first.) $ ls /sys/class

Re: [ptxdist] console_name for systemd based systems

2012-03-28 Thread Alexander Dahl
Hello Michael, Am 2012-03-28 13:10, schrieb Michael Olbrich: >> $ uname -r >> 2.6.36.4 >> >> (It's planned to upgrade to 3.0.x but we have to port the kernel module >> code for our own hardware first.) > > that's the problem. systemd needs at least 2.6.39 to work properly. > In this case the

Re: [ptxdist] converting busybox config for ptxdist

2012-03-29 Thread Alexander Dahl
Hei hei, Am 29.03.2012 17:27, schrieb Alexander Stein: > how do you convert the busybox' to ptxdist own config? I found those .in > files > under config/busybox, but didn't find an script to convert them. I need an > own > set of config files to integrate busybox into an initramfs with its own

Re: [ptxdist] converting busybox config for ptxdist

2012-03-30 Thread Alexander Dahl
Am 2012-03-29 23:44, schrieb Alexander Dahl: > As far as I remember from last week, ptxdist .in file just sources the > Kconfig from busybox. Busybox uses the same config system, it's just > assimilated. ;-) Because of curiosity I just had another look on this. Speaking of ptx

Re: [ptxdist] converting busybox config for ptxdist

2012-03-30 Thread Alexander Dahl
Am 2012-03-30 09:55, schrieb Alexander Dahl: > Hope this is a little more clear than my guessing from memory > yesterday. O:-) Argh, there's one step I forgot. In rules/busybox.make this is of course converted back to a config file busybox build understands, but because of the equal p

[ptxdist] ubi utils in package mtd-utils broken

2012-04-04 Thread Alexander Dahl
Hei hei, I was just migrating our BSP from ptxdist 2012.03.0 to 2012.04.0 and the build fails in targetinstall stage of package mtd-utils like this: make: *** [/home/adahl/Work/src/BSP/platform-at91sam9g20XXX/state/mtd-utils.targetinstall] Error 1 No suitable file '/usr/sbin/ubiattach' could

Re: [ptxdist] ubi utils in package mtd-utils broken

2012-04-05 Thread Alexander Dahl
Am 2012-04-05 12:49, schrieb Bernhard Walle: > @Alexander: Can you try that out? Because of a lack of time I applied it directly on my installed ptxdist. mtd-utils build was successful now. I will test the binaries on the target next week. Thanks for the quick response and have some nice free day

Re: [ptxdist] ubi utils in package mtd-utils broken

2012-04-10 Thread Alexander Dahl
Hei hei, Am 2012-04-05 18:29, schrieb Alexander Dahl: > Because of a lack of time I applied it directly on my installed > ptxdist. mtd-utils build was successful now. I will test the binaries on > the target next week. I saw Michael already applied the patch, nevertheless and for th

Re: [ptxdist] Loading kernel configuration from an existing platform ( where is the file ??? :D )

2012-05-02 Thread Alexander Dahl
Hei hei, Am 2012-05-02 09:53, schrieb barhoumi mohtadi: > I've tried to load that file , i can see that options are checked, i > save my configuration, but when running kernelconfig another time, > it's like i've done nothing!! the confiugration has not been loaded > properly i guess... This sou

Re: [ptxdist] Building a older version toolchain using a a newer version ptxdist

2012-05-21 Thread Alexander Dahl
Am 2012-05-16 19:50, schrieb MC Potgieter: > Then what about the BSP? Will I have to use the 2011.11.0 BSP too? > I want to take advantage of the latest packages available in the > latest BSP (2012.02.0). You could take the offered BSP as base for your own stuff and for example do an `ptxdist migr

Re: [ptxdist] [PATCH] u-boot: Add option to install u-boot environment tools on target

2012-05-29 Thread Alexander Dahl
Hello, Am 2012-05-28 14:42, schrieb Bart vdr. Meulen: > From: Remy Bohmer > > Add config option that can be used to install u-boot tools on target > Current tools that can be selected: > - fw_setenv > - fw_printenv > - gen_eth_addr Does this conflict with the recently introduced u-boot-tools p

Re: [ptxdist] AT91SAM9263-ek

2012-06-28 Thread Alexander Dahl
Hei hei, Am 2012-06-28 08:42, schrieb Stutz Sven: > Further more to boot this image on the hardware, do I really have to > use at91bootstrap to load barebox and then barebox to load the kernel? > And to run this image in QEMU will this boot loader not influence the system? We use at91bootstrap an

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

2012-06-28 Thread Alexander Dahl
ry goes to /sbin/ssmtp at the moment. Would be cool if someone could fix this, I didn't know how. O:-) Signed-off-by: Alexander Dahl --- rules/ssmtp.in |6 ++ rules/ssmtp.make |5 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/rules/ssmtp.in b/rules/ssmtp.i

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

[ptxdist] ssmtp: two new patches

2012-07-30 Thread Alexander Dahl
Hei hei, I got two patches for the ssmtp package. The first one is the revised version of a patch we discussed a month ago. The second one fixes the build so autoconf is called correctly and all options are set with the current ptxdist mechanisms. I used those just by having a look at other packa

[ptxdist] [PATCH 1/2] ssmtp: install optional symlinks from sendmail to ssmtp

2012-07-30 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/ssmtp.in |6 ++ rules/ssmtp.make |5 + 2 files changed, 11 insertions(+), 0 deletions(-) diff --git a/rules/ssmtp.in b/rules/ssmtp.in index 302dccc..5813eed 100644 --- a/rules/ssmtp.in +++ b/rules/ssmtp.in @@ -35,4 +35,10 @@ config

[ptxdist] [PATCH 2/2] ssmtp: update setting build options to current ptxdist mechanisms

2012-07-30 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/ssmtp.make | 27 --- 1 files changed, 8 insertions(+), 19 deletions(-) diff --git a/rules/ssmtp.make b/rules/ssmtp.make index 50753d0..80c6bb8 100644 --- a/rules/ssmtp.make +++ b/rules/ssmtp.make @@ -37,23 +37,12

[ptxdist] [PATCH] busybox: add more empty folders for ifupdown

2012-07-30 Thread Alexander Dahl
busybox. Is this very ifupdown used together with systemd? Then these folders have to be added there, too. Greets Alex Signed-off-by: Alexander Dahl --- rules/initmethod-bbinit.make |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/rules/initmethod-bbinit.make b/rules

Re: [ptxdist] dhclient startup

2012-08-09 Thread Alexander Dahl
Hei hei, On Thu, Aug 09, 2012 at 07:02:36PM +0200, stefan.fr...@qutools.com wrote: > So my question would be: > Is there some kind of template for that script? Or did I miss something else? In case you use ifupdown of busybox the DHCP client (we use udhcpc from busybox itself) is started somehow

[ptxdist] dependencies with collections

2012-08-16 Thread Alexander Dahl
Hei hei, to not use a workaround on building our BSP I'd like to have some ideas on a dependency problem together with collections. We use collections to have slightly different builds of a BSP on the same target hardware. I have set PTXCONF_OPENSSL=m so I can activate/deactivate it in a collecti

Re: [ptxdist] ssmtp: two new patches

2012-08-27 Thread Alexander Dahl
Hello, On Mon, Jul 30, 2012 at 05:54:51PM +0200, Alexander Dahl wrote: > I got two patches for the ssmtp package. The first one is the revised > version of a patch we discussed a month ago. The second one fixes the > build so autoconf is called correctly and all options are set with the

Re: [ptxdist] dependencies with collections

2012-08-29 Thread Alexander Dahl
Hei Michael, Am 2012-08-21 11:32, schrieb Michael Olbrich: >> 3) The third even more elegant solution I missed. > > Create a separate package that selects openssl and is enabled/disabled with > it on the collectionconfig. Im playing around with this solution now. Seems promising and solves some

Re: [ptxdist] dependencies with collections

2012-08-30 Thread Alexander Dahl
Hei hei, Am 2012-08-21 11:32, schrieb Michael Olbrich: >> 1) There's a way to test in the make file if openssl is activated in >> the collection and I missed it. > > ifneq ($(filter openssl,$(PACKAGES)),) > ... > endif > > I think. I would not recommend this. This will break if you switch > col

Re: [ptxdist] ssmtp: two new patches

2012-09-12 Thread Alexander Dahl
Hei hei, Am 2012-08-27 18:21, schrieb Alexander Dahl: > What about those? Did these patches appear on the list? O:-) ;-) Greets Alex -- »With the first link, the chain is forged. The first speech censured, the first thought forbidden, the first freedom denied, chains us all irrevoca

Re: [ptxdist] [ANNOUNCE] PTXdist 2012.09.0 released

2012-09-14 Thread Alexander Dahl
Hei hei, Am 2012-09-14 00:26, schrieb Tim Sander: > I just tried to build a raspberry pi ptxdist image with not so stellar > success > with ptxdist-2012-09.0: Did you start a BSP from scratch? Would you mind sharing it? I'll get my Raspberry Pi in October and already thought about using it wit

[ptxdist] [PATCH] util-linux-ng: make target install of 'column' possible

2012-09-14 Thread Alexander Dahl
We need the tool 'column' for our BSP. The tool is compiled with util-linux-ng but not installed in targetinstall stage. This patch makes this configurable in menuconfig. Signed-off-by: Alexander Dahl --- rules/util-linux-ng.in |6 ++ rules/util-linux-ng.make |3 ++

Re: [ptxdist] [PATCH 2/2] ssmtp: update setting build options to current ptxdist mechanisms

2012-09-24 Thread Alexander Dahl
Hei hei, Am 2012-09-13 18:00, schrieb Michael Olbrich: > any special reason why you switch from CROSS_AUTOCONF_ROOT to > CROSS_AUTOCONF_USR? No reason. I guess this is what I saw in other packages and just adopted. What's the difference? Where is it defined? What is the usual content? O:-) Gree

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

2012-09-24 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/ssmtp.in | 10 ++ rules/ssmtp.make |5 + 2 files changed, 15 insertions(+), 0 deletions(-) diff --git a/rules/ssmtp.in b/rules/ssmtp.in index 302dccc..5ba834a 100644 --- a/rules/ssmtp.in +++ b/rules/ssmtp.in @@ -35,4 +35,14 @@ config

Re: [ptxdist] [PATCH 2/2] ssmtp: update setting build options to current ptxdist mechanisms

2012-09-30 Thread Alexander Dahl
Hei hei, On Sun, Sep 30, 2012 at 03:01:34PM +0200, Michael Olbrich wrote: > CROSS_AUTOCONF_ROOT -> configure is called with --prefix=/ > CROSS_AUTOCONF_USR -> configure is called with --prefix=/usr Ah I see. Thanks for explaining. > When I create a new package I usually use what other distros a

[ptxdist] [PATCH] ssmtp: update setting build options to current ptxdist mechanisms

2012-10-01 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/ssmtp.make | 25 +++-- 1 files changed, 7 insertions(+), 18 deletions(-) diff --git a/rules/ssmtp.make b/rules/ssmtp.make index 50753d0..f78ed0e 100644 --- a/rules/ssmtp.make +++ b/rules/ssmtp.make @@ -37,23 +37,12 @@ SSMTP_CONF_ENV

[ptxdist] [PATCH] timezone: introduce option TIMEZONE_INSTALL_LOCALTIME for more flexibility with own rules

2012-10-09 Thread Alexander Dahl
is stored in root filesystem or on a separare data partition with symlinks to it. Maybe it's handy for the public. Signed-off-by: Alexander Dahl --- rules/timezone.in | 28 1 files changed, 20 insertions(+), 8 deletions(-) diff --git a/rules/timezone.in b/ru

Re: [ptxdist] [PATCH] timezone: introduce option TIMEZONE_INSTALL_LOCALTIME for more flexibility with own rules

2012-10-09 Thread Alexander Dahl
Hei hei, Am 2012-10-09 18:30, schrieb Michael Olbrich: > depends on GLIBC_LOCALTIME = "" I was not aware kconfig allows this, the documentation was not clear about this. I will have a look into it tomorrow. Greets Alex -- »With the first link, the chain is forged. The first speech censured, t

[ptxdist] [PATCH] timezone: rename GLIBC_LOCALTIME and targetinstall only if not empty

2012-10-10 Thread Alexander Dahl
Revised with fresh morning mind. I could not test the migrate stuff, please review! Greets Alex Signed-off-by: Alexander Dahl --- rules/timezone.in |5 +++-- rules/timezone.make |6 +++--- scripts/migrate/migrate_ptx |6 ++ 3 files changed, 12 insertions(+), 5

[ptxdist] gnuplot: update and fix broken stuff

2012-10-12 Thread Alexander Dahl
Hei hei, I prepared two patches for gnuplot. First is just a version bump recreating the patches because one was integrated upstream meanwhile. The other one fixes the broken menu entries, removes build options not present anymore and introduces a submenu for configuring options of libgd which is

[ptxdist] [PATCH 1/2] gnuplot: upgrade to 4.6.1 removing one patch integrated upstream

2012-10-12 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- ...ld-documentation-generator-tools-with-CC_.patch | 99 ...DFLAGS-when-building-the-documentation-ge.patch | 30 -- patches/gnuplot-4.4.3/autogen.sh |1 - patches/gnuplot-4.4.3/series

[ptxdist] [PATCH 2/2] gnuplot: fix broken build options for new gnuplot version

2012-10-12 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/gnuplot.in | 49 - rules/gnuplot.make | 21 ++--- 2 files changed, 30 insertions(+), 40 deletions(-) diff --git a/rules/gnuplot.in b/rules/gnuplot.in index f25f2c1..27682de 100644

Re: [ptxdist] [PATCH 1/2] gnuplot: upgrade to 4.6.1 removing one patch integrated upstream

2012-10-14 Thread Alexander Dahl
Hei hei, On Sun, Oct 14, 2012 at 12:45:38PM +0200, Michael Olbrich wrote: > This last hunk was not integrated upstream, so doc2gih fails to link > because of missing libraries. Strange. Build didn't fail for me, but maybe I have not tried with the option to build this docu thing. I will have a s

Re: [ptxdist] [PATCH 1/2] gnuplot: upgrade to 4.6.1 removing one patch integrated upstream

2012-10-14 Thread Alexander Dahl
On Sun, Oct 14, 2012 at 03:25:36PM +0200, Alexander Dahl wrote: > Strange. Build didn't fail for me, but maybe I have not tried with the > option to build this docu thing. I will have a second look into it > tomorrow. I guess this means changing the patch instead of dropping > i

[ptxdist] (no subject)

2012-10-15 Thread Alexander Dahl
Hei hei, second version of those patches, incorporating suggested changes. Greets Alex -- ptxdist mailing list ptxdist@pengutronix.de

[ptxdist] [PATCH 1/2] gnuplot: upgrade to v4.6.1

2012-10-15 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- ...ld-documentation-generator-tools-with-CC_.patch | 99 ...DFLAGS-when-building-the-documentation-ge.patch | 30 -- patches/gnuplot-4.4.3/autogen.sh |1 - patches/gnuplot-4.4.3/series

[ptxdist] [PATCH 2/2] gnuplot: fix broken build options for new gnuplot version

2012-10-15 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/gnuplot.in | 49 - rules/gnuplot.make | 21 ++--- 2 files changed, 30 insertions(+), 40 deletions(-) diff --git a/rules/gnuplot.in b/rules/gnuplot.in index f25f2c1..c5bd109 100644

Re: [ptxdist] (no subject)

2012-10-15 Thread Alexander Dahl
Am 2012-10-15 11:30, schrieb Alexander Dahl: > second version of those patches, incorporating suggested changes. Sorry for leaving the subject empty, I blame my nose sneezing the whole day. ;-) A -- »With the first link, the chain is forged. The first speech censured, the first thou

Re: [ptxdist] [ANNOUNCE] PTXdist 2012.10.0 released

2012-10-15 Thread Alexander Dahl
Hei hei, Am 2012-10-12 11:45, schrieb Michael Olbrich: > I'm happy to announce that I've just released ptxdist-2012.10.0. > No really big changes this time. Mostly bugfixes, a few version bumps, new > packages and various cleanups. Migrated one BSP today, without any obvious problems. > Thanks

[ptxdist] [PATCH] rootfs: change permissions of initial device nodes according to LFS 6.1.1

2012-10-16 Thread Alexander Dahl
: Alexander Dahl --- rules/rootfs.make |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rules/rootfs.make b/rules/rootfs.make index 4ba33d1..1f9a0f0 100644 --- a/rules/rootfs.make +++ b/rules/rootfs.make @@ -38,9 +38,9 @@ ifdef PTXCONF_ROOTFS_DEV @$(call

[ptxdist] [PATCH] rootfs: change permissions of initial device nodes

2012-10-17 Thread Alexander Dahl
: Alexander Dahl --- rules/rootfs.make |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/rootfs.make b/rules/rootfs.make index 4ba33d1..602391f 100644 --- a/rules/rootfs.make +++ b/rules/rootfs.make @@ -38,8 +38,8 @@ ifdef PTXCONF_ROOTFS_DEV @$(call

[ptxdist] regression linking against libcgi after fixing patches in a53b663

2012-10-24 Thread Alexander Dahl
Hei hei, in commit a53b663 a typo in Makefile of LibCGI was fixed, actually in the patches fixing various things in LibCGI. This sets the soname of the library to libcgi.so.0 in the options passed to the linker. However this libcgi.so.0 is never installed but libcgi.so instead. This does work at

Re: [ptxdist] regression linking against libcgi after fixing patches in a53b663

2012-11-01 Thread Alexander Dahl
Hei hei, Am 2012-10-28 18:09, schrieb Michael Olbrich: >> I'm not familiar with autotools to fix this myself. Expected behaviour >> would be some libcgi.so.x.y.z is installed and libcgi.so.x and libcgi.so >> are symlinks of which only libcgi.so.x is installed to the target. If I >> rename libcgi.

Re: [ptxdist] UBIFS generation question

2012-11-01 Thread Alexander Dahl
Hei Jeff, On 01.11.2012 19:22, Jeff Horn wrote: > echo $(shell git rev-parse --verify HEAD) > $(ROOTDIR)/etc/revision I personally use `git describe --tags` for this, but that's more a question of taste. > That works fine for creating the file in the platform/root directory. When > I started to

Re: [ptxdist] [ANNOUNCE] PTXdist 2012.11.0 released

2012-11-27 Thread Alexander Dahl
Hei hei, Am 2012-11-27 13:24, schrieb Michael Olbrich: > What we changed was the handling of additional compiler and linker flags. > In the past we've tried to pass these flags through the build-systems of > the individual packages. This was always a lot of work and wasn't very > reliable. Now th

[ptxdist] [PATCH] add en_US locale with utf8 encoding and add missing creation of en_GB@euro

2012-12-14 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/locales.in |6 ++ rules/locales.make |6 ++ 2 files changed, 12 insertions(+), 0 deletions(-) diff --git a/rules/locales.in b/rules/locales.in index f6241c7..292a602 100644 --- a/rules/locales.in +++ b/rules/locales.in @@ -20,6 +20,12

Re: [ptxdist] [PATCH] lowpan-tools: new package

2013-02-05 Thread Alexander Dahl
Hei hei, Am 2013-01-30 22:00, schrieb Alexander Aring: > Now I realize it. I found rules with ':=' and '='. Could you explain the > different? This is syntax of Gnu Make, see https://www.gnu.org/software/make/manual/ and especially https://www.gnu.org/software/make/manual/html_node/Flavors.html#

Re: [ptxdist] [PATCH] Update host-cmake to 2.8.10

2013-02-05 Thread Alexander Dahl
Hei Bernhard, On Tue, Feb 05, 2013 at 09:45:37PM +0100, Bernhard Walle wrote: > +HOST_CMAKE_VERSION := 2.8.10 Why not 2.8.10.2, the latest bugfix release of cmake? They usually don't do these point releases but there were some little changes fixing some annoying things: http://www.cmake.org/fi

[ptxdist] [PATCH] readd _SERIES option for u-boot and add it for at91bootstrap (partially reverts dac31c4)

2013-02-06 Thread Alexander Dahl
This can be used to have different series file in one patches directory for a given package. Removing U_BOOT_SERIES broke our BSP using this mechanism. Signed-off-by: Alexander Dahl --- platforms/at91bootstrap.in |9 + platforms/u-boot.in|9 + 2 files change

Re: [ptxdist] [PATCH] iniparser: Add package

2013-02-18 Thread Alexander Dahl
Hei hei, we use this as well but with my patches on top to build with cmake. See: https://github.com/LeSpocky/iniparser Nicolas refused to merge this into the main tree, but maybe someone else finds it useful. I have working rules/iniparser.(in|make) here for build with cmake. Contact me if you'

[ptxdist] [PATCH] libmodbus3: add patch for fixing alignment problem on arm

2013-03-14 Thread Alexander Dahl
We use -Wcast-align on ARMv5 platform and libmodbus3 sets -Werror which leads to a failing build in one case. This patch fixes the alignment problem. Upstream pull requested. Signed-off-by: Alexander Dahl --- ...nt-problem-build-fails-with-Werror-and-Wc.patch | 33

Re: [ptxdist] [PATCH] libmodbus3: add patch for fixing alignment problem on arm

2013-03-19 Thread Alexander Dahl
Hei Michael, Am 2013-03-19 16:32, schrieb Michael Olbrich: > On Thu, Mar 14, 2013 at 01:16:36PM +0100, Alexander Dahl wrote: >> We use -Wcast-align on ARMv5 platform and libmodbus3 sets -Werror >> which leads to a failing build in one case. This patch fixes the >> alignm

Re: [ptxdist] [PATCH] gnuplot: bump to 4.6.2

2013-03-23 Thread Alexander Dahl
Hei hei, I didn't have a look in this yet, but did you have a look at my patch for gnuplot 4.6.x I posted last year? Michael wanted me to add some more stuff but I didn't have time to make myself familiar with autotools yet. :-/ Greets Alex On Sat, Mar 23, 2013 at 06:58:16PM +0100, Bernhard Wal

Re: [ptxdist] [PATCH] gnuplot: bump to 4.6.2

2013-03-24 Thread Alexander Dahl
Hello Bernhard, On Sat, Mar 23, 2013 at 10:24:23PM +0100, Bernhard Walle wrote: > Do you have some link for me? This was http://article.gmane.org/gmane.comp.embedded.ptxdist.devel/9646 from October 2012. Greets Alex -- »With the first link, the chain is forged. The first speech censured, the

Re: [ptxdist] [PATCH] libmodbus3: add patch for fixing alignment problem on arm

2013-03-26 Thread Alexander Dahl
Hei hei, Am 2013-03-19 17:27, schrieb Michael Olbrich: >> > LIBMODBUS3_MAKE_OPT:= -C src >> > LIBMODBUS3_INSTALL_OPT := -C src install >> >> My colleague removed 'tests' from Makefile.am, I don't know which one >> would be the best choice. > > I prefer to avoid patches when possible.

[ptxdist] dropbear: fixing some stuff, version bump, new hashes

2013-03-26 Thread Alexander Dahl
This patch series addresses some problems I came across when updating dropbear to the newest upstream release. First removes some options I could not even find in the upstream version control anymore (changed from anything to mercurial some time ago). Second fixes some macros which were renamed in

[ptxdist] [PATCH 1/4] remove long gone options

2013-03-26 Thread Alexander Dahl
In current versions dropbear is always linked against libutil. The option --disable-nls is also long gone upstream. Signed-off-by: Alexander Dahl --- rules/dropbear.in |7 --- rules/dropbear.make |7 +-- 2 files changed, 1 insertions(+), 13 deletions(-) diff --git a/rules

[ptxdist] [PATCH 2/4] fix renamed macros

2013-03-26 Thread Alexander Dahl
ff-by: Alexander Dahl --- rules/dropbear.make | 18 -- 1 files changed, 12 insertions(+), 6 deletions(-) diff --git a/rules/dropbear.make b/rules/dropbear.make index efa00c2..57dfe0b 100644 --- a/rules/dropbear.make +++ b/rules/dropbear.make @@ -106,10 +106,12 @@ endif

[ptxdist] [PATCH 3/4] bump upstream version and recreate patch series

2013-03-26 Thread Alexander Dahl
Upgrade to upstream version 2013.56 fixing some minor issues and adding support for SHA-2 hashes. See https://matt.ucc.asn.au/dropbear/CHANGES for a complete list of changes. Signed-off-by: Alexander Dahl --- .../0001-Fix-build-on-Darwin.patch |1 - .../{dropbear-2012.55

[ptxdist] [PATCH 4/4] add options for recently added SHA256 and SHA512 hashes

2013-03-26 Thread Alexander Dahl
Make new hash functions available through ptxdist config menu. Signed-off-by: Alexander Dahl --- rules/dropbear.in | 26 ++ rules/dropbear.make | 16 2 files changed, 42 insertions(+), 0 deletions(-) diff --git a/rules/dropbear.in b/rules

Re: [ptxdist] [PATCH] libmodbus3: add patch for fixing alignment problem on arm

2013-03-28 Thread Alexander Dahl
Hei hei, Am 2013-03-27 18:57, schrieb Michael Olbrich: > When does this issue happen anyways? I've never seen it. The problem is in one of the test programs, code was like this before: uint16_t *tab_rp_registers; /* load some data to this poiner */ *((uint32_t *)tab_rp_registers) = someth

Re: [ptxdist] [ANNOUNCE] PTXdist 2013.04.0 released

2013-04-08 Thread Alexander Dahl
Am 2013-04-08 10:54, schrieb Michael Olbrich: > Alexander Dahl (4): > remove long gone options > fix renamed macros > bump upstream version and recreate patch series > add options for recently added SHA256 and SHA512 hashes This is all related to dropbear, I

Re: [ptxdist] PTXdist: New cmake package (webtoolkit wt)

2013-05-04 Thread Alexander Dahl
Hei hei, Am 2013-04-22 16:33, schrieb Stranz Jan-Marc: > I created new rules for that package with > ptxdist newpackage target > But these rules a based on "autotools" rather than on "cmake". Go like this but just change the stuff in the .in and .make rule. > What should I do? > Is there an app

[ptxdist] log4cplus fails some early stage

2013-05-04 Thread Alexander Dahl
Hei hei, after adding log4cplus to one of my projects I have problems building it with ptxdist. I activated it in menuconfig, even did a `ptxdist clean` to be sure having no old stuff around after the last migrate to ptxdist 2013.04.0 and it fails like this: -- ta

Re: [ptxdist] log4cplus fails some early stage

2013-05-06 Thread Alexander Dahl
Hei hei, Am 2013-05-05 09:17, schrieb Michael Olbrich: > It works here. The error usually means, that there is no URL. What does > "ptxdist print LOG4CPLUS_URL" say? If this is empty, then maybe you have no > SF mirror set. This is: % ptxdist print LOG4CPLUS_URL http://downloads.sourceforge.net

[ptxdist] [PATCH] lm_sensors: bump to v3.3.3

2013-05-07 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/lm_sensors.make |6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/rules/lm_sensors.make b/rules/lm_sensors.make index 3bde4e5..d56fbbe 100644 --- a/rules/lm_sensors.make +++ b/rules/lm_sensors.make @@ -17,14 +17,14 @@ PACKAGES

Re: [ptxdist] [ANNOUNCE] PTXdist 2013.06.0 released

2013-06-11 Thread Alexander Dahl
Hei hei, On Mon, Jun 10, 2013 at 05:06:20PM +0200, Michael Olbrich wrote: > Worth noting are the new host-system-* packages. This is now the preferred > way to say 'I need something installed on the build host". I saw this in get and find it very useful, directly inspired me to write my own host

Re: [ptxdist] BSP verschoben

2013-07-11 Thread Alexander Dahl
Moin, Am 2013-07-11 12:01, schrieb henrik.kr...@heidolph.de: > -usplash_05.49 > > -mkelfImage-2.7 > mkelfImage konnte erst nicht gefunden werden, konnte es aber manuel > finden. Danach usplash. Das war in dieser Version aber nicht zu > bekommen, sondern nur usplash_05.51. Bei die

Re: [ptxdist] rc.d script

2013-07-22 Thread Alexander Dahl
Am 2013-07-22 12:19, schrieb henrik.kr...@heidolph.de: > as I have created scripts in /etc/rc.d for automatic start of > programms (and settings) these are not executed on startup. I can't > use systemd mechanism because if I use it our GUI application has no > input from the touch panel. With (man

Re: [ptxdist] [ANNOUNCE] PTXdist 2013.08.0 released

2013-08-13 Thread Alexander Dahl
Hei hei, Am 2013-08-12 19:52, schrieb Marc Kleine-Budde: > Marc Kleine-Budde (6): > platforms: generate menu for hosttools on the fly I guess this is commit 51c5786c16a9a3508af9b6cc69947a2f3b8bc7cf and it causes the *.in files in my platforms folder to be ignored. So I have two files in my

[ptxdist] link error in package ssmtp with ssl support and recent toolchain

2013-08-14 Thread Alexander Dahl
Hei hei, after migrating from OSELAS toolchain 2011.11.3 to 2012.12.1 ssmtp fails to build with ssl support enabled, at least on our platform which ist arm-v5te. I had a rough look over the ssmtp sources and it needs openssl for this and uses -lssl as linker option. Compiling produces lots of war

Re: [ptxdist] [ANNOUNCE] PTXdist 2013.08.0 released

2013-08-20 Thread Alexander Dahl
Hei hei, Am 2013-08-16 15:12, schrieb Michael Olbrich: >> I guess this is commit 51c5786c16a9a3508af9b6cc69947a2f3b8bc7cf and it >> causes the *.in files in my platforms folder to be ignored. So I have >> two files in my platforms folder in my BSP overwriting one rule from >> ptxdist platforms fo

Re: [ptxdist] [PATCH] Fix problem with finding platforms/*.in

2013-08-20 Thread Alexander Dahl
Hei hei, Am 2013-08-16 17:25, schrieb Bernhard Walle: > The problem was introduced with 51c5786c16a9a3508af9b6cc69947a2f3b8bc7cf > on 20th June 2013. So I think it was also in 2013.07 although I didn't > test.( No it's not in the 2013.07.x branch. I reported the problem after the 2013.08.0 relea

Re: [ptxdist] different ptxdist versions

2013-08-29 Thread Alexander Dahl
Hei hei, Am 2013-08-29 11:53, schrieb Ruben Louw: > I installed the ptxdist version 2012.12.0 and I installed another (for > mini6410 to play around with) which was ptxdist 2011.03.0. is there a way > to switch between the two versions? In the documentation it states that you > have to build cert

[ptxdist] problem compiling gdbserver and gdb with -Wcast-align

2013-09-04 Thread Alexander Dahl
Hei hei, at the moment we are using ptxdist 2013.07.1 with OSELAS toolchain 2012.12.1 for arm-v5te. We usually have set -Wcast-align in the extra toolchain options (TARGET_EXTRA_CFLAGS and the two for C++) to spot alignment problems in our code. Most software packages throw alignment warnings. Ig

Re: [ptxdist] problem compiling gdbserver and gdb with -Wcast-align

2013-09-05 Thread Alexander Dahl
Hei hei, Am 2013-09-04 20:38, schrieb Uwe Kleine-König: > Drop the flag from the global options and use it for your code is the > obvious alternative. This way you generate the warnings exactly in the > parts of the build that you seem to care about. The not so obvious for you: we talk about a l

[ptxdist] [PATCH] [lldpd] add package

2013-09-05 Thread Alexander Dahl
o, rm and cat from busybox so maybe those should be added as dependency. Signed-off-by: Alexander Dahl --- generic/etc/init.d/lldpd | 139 ++ rules/lldpd-bbinit.in|9 +++ rules/lldpd.in | 97

[ptxdist] [PATCH] json-c: update to v0.10

2013-09-05 Thread Alexander Dahl
Version bump for json-c library. v0.11 is current but has built errors on ARMv5 so I decided to go with v0.10 for now. One patch is added to install a missing header file. Signed-off-by: Alexander Dahl --- .../0001-install_json_object_iterator-h.patch | 21 patches

[ptxdist] [PATCH 2/3] net-snmp: version bump to 5.7.x LTS branch

2013-09-05 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- .../0001-net-snmp-config-add-SYSROOT-support.patch | 50 --- patches/net-snmp-5.6.1/series |1 - .../0001-net-snmp-config-add-SYSROOT-support.patch | 52 patches/net-snmp-5.7.2/series

[ptxdist] [PATCH 1/3] net-snmp: fix installed MIB files (one typo, one missing)

2013-09-05 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/net-snmp.make |5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/net-snmp.make b/rules/net-snmp.make index 24efa72..4151d2b 100644 --- a/rules/net-snmp.make +++ b/rules/net-snmp.make @@ -240,14 +240,15 @@ NET_SNMP_RFCMIBS

[ptxdist] [PATCH 3/3] net-snmp: fix vim mode lines

2013-09-05 Thread Alexander Dahl
Signed-off-by: Alexander Dahl --- rules/net-snmp.in |2 ++ rules/net-snmp.make |2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/rules/net-snmp.in b/rules/net-snmp.in index 10dbab0..649fb98 100644 --- a/rules/net-snmp.in +++ b/rules/net-snmp.in @@ -117,3 +117,5

<    4   5   6   7   8   9   10   11   12   >