Re: [ptxdist] qmake broken after ptxdist version switch?

2013-12-03 Thread Schenk, Gavin
Hi Markus, I give it a try. Let´s say you have two packages: MYEXECUTABLE MYLIBRARY Both packages come with its own rule/makefile in the rules subfolder of your project. MYEXECUTABLE builds an executable that depends on the library MYLIBRARY. First of all you have to describe t

[ptxdist] [PATCH] generic/etc/fstab: drop usbfs mountpoint

2013-12-03 Thread Uwe Kleine-König
usbfs is deprecated since Linux 2.6.14 (according to http://bugs.debian.org/360165) and having this entry makes mount -a return unsuccessfully. So remove it. Signed-off-by: Uwe Kleine-König --- generic/etc/fstab | 1 - 1 file changed, 1 deletion(-) diff --git a/generic/etc/fstab b/generic/etc/f

Re: [ptxdist] hd.img use

2013-12-03 Thread Marc Kleine-Budde
On 12/03/2013 02:37 PM, Alexander Stein wrote: > BTW: no need for dd here. you can simply use cat /.../hd.img > > /dev/sdc which is faster on some hardware ...or define the blocksize dd should use. dd if=hd.img of=/dev/$DRIVE bs=2M IIRC cat uses 64k and dd 512 bytes by default Marc -- Pengutr

Re: [ptxdist] hd.img use

2013-12-03 Thread Alexander Aring
On Tue, Dec 03, 2013 at 02:37:26PM +0100, Alexander Stein wrote: > Hallo, > > On Tuesday 03 December 2013 14:16:42, Antonio Righettini wrote: > > I have already try, dd commnad finish without errors, but the disk doesn't > > contain data. > > > > I used this command : > > > > dd if=/.../hd.img o

Re: [ptxdist] hd.img use

2013-12-03 Thread Alexander Stein
Hallo, On Tuesday 03 December 2013 14:16:42, Antonio Righettini wrote: > I have already try, dd commnad finish without errors, but the disk doesn't > contain data. > > I used this command : > > dd if=/.../hd.img of=/dev/sdc > > where sdc is my device (hard disk) > > I can not see any partition

Re: [ptxdist] hd.img use

2013-12-03 Thread Antonio Righettini
Hi Alex I have already try, dd commnad finish without errors, but the disk doesn't contain data. I used this command : dd if=/.../hd.img of=/dev/sdc where sdc is my device (hard disk) I can not see any partition on hard disk. 2013/12/3 Alexander Aring > Hi, > > On Mon, Dec 02, 2013 at 1

Re: [ptxdist] Why was shadow support disabled for sudo?

2013-12-03 Thread Marc Kleine-Budde
On 11/30/2013 04:26 PM, Felix Mellmann wrote: > Marc Kleine-Budde writes: > >> >> It's probably a bug, please send a patch. >> >> cheers, >> Marc > > I was just wondering, if there is still a reason to disable shadow support. > Obviously it was at some time intended ... > Without shadow support

Re: [ptxdist] qmake broken after ptxdist version switch?

2013-12-03 Thread Markus Wolters
Thank you Gavin, your solution solved my general library problem. Unfortuantely, the next problem arise right after that. My project consist of own libs and executables, but at linking stage the own build libs are not known anymore (unknown reference). Does this make any sense anyone of you? R