Re: debugging a run of poudriere-bulk

2018-10-03 Thread Shane Ambler
On 3/10/18 9:11 pm, Matthias Apitz wrote: > > Hello, > > > I'm trying to nail down PR 231532 of a port which fails to build in > poudriere. In the last phase of the ports build, while creating the pkg > of the built port with pkg-static, this crashes: > > # tail > /usr/local/poudriere/data/log

Re: which way to update export_args structure?

2018-10-03 Thread Rick Macklem
Brooks Davis wrote: >On Wed, Oct 03, 2018 at 12:40:27AM +, Rick Macklem wrote: >> Hi, >> >> I am working on updating "struct export_args" to fix/add a few things. >> One of these is that "ex_flags" is an int, but the flags are defined in >> mount.h >> as MNT_xx bits that now exceed 32bits (mnt

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread Jakob Alvermark
On 10/3/18 7:39 PM, Mario Lobo wrote: Em qua, 3 de out de 2018 às 14:03, Jakob Alvermark escreveu: On 10/3/18 6:19 PM, Mario Lobo wrote: Em qua, 3 de out de 2018 às 10:10, David Wolfskill escreveu: On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: Do the headphones wor

Re: debugging a run of poudriere-bulk

2018-10-03 Thread Matthias Apitz
El día miércoles, octubre 03, 2018 a las 11:06:55p. m. +0200, Tobias C. Berner escribió: > Moin moin > > Unfortunately it is very hard to help here when not being able to reproduce > the issue :/ > Have you tried wiping all the packages in poudriere's repo? -- i.e. -c -- > maybe you're pkg packa

Re: debugging a run of poudriere-bulk

2018-10-03 Thread Tobias C. Berner
Moin moin Unfortunately it is very hard to help here when not being able to reproduce the issue :/ Have you tried wiping all the packages in poudriere's repo? -- i.e. -c -- maybe you're pkg package is just hosed. mfg Tobias On Wed, 3 Oct 2018 at 22:30, Matthias Apitz wrote: > > I added the fo

Re: debugging a run of poudriere-bulk

2018-10-03 Thread Matthias Apitz
I added the following lines to /usr/local/share/poudriere/bulk.sh to get the env vars into the environment of pkg(8): export DEBUG_LEVEL=4 export DEBUG_SCRIPTS=TRUE export DEVELOPER_MODE=TRUE export PKG_CREATE_VERBOSE=TRUE With these the port builds fine: # tail -f /usr/local/poudriere/data/lo

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread Mario Lobo
Em qua, 3 de out de 2018 às 14:03, Jakob Alvermark escreveu: > On 10/3/18 6:19 PM, Mario Lobo wrote: > > Em qua, 3 de out de 2018 às 10:10, David Wolfskill > escreveu: > >> On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: >> > >> > Do the headphones work with this patch? >>

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread Jakob Alvermark
On 10/3/18 6:19 PM, Mario Lobo wrote: Em qua, 3 de out de 2018 às 10:10, David Wolfskill mailto:da...@catwhisker.org>> escreveu: On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: > > Do the headphones work with this patch? > > Index: sys/dev/sound/pci/hda

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread Mario Lobo
Em qua, 3 de out de 2018 às 10:10, David Wolfskill escreveu: > On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: > > > > Do the headphones work with this patch? > > > > Index: sys/dev/sound/pci/hda/hdaa.c > > ===

Re: which way to update export_args structure?

2018-10-03 Thread Brooks Davis
On Wed, Oct 03, 2018 at 12:40:27AM +, Rick Macklem wrote: > Hi, > > I am working on updating "struct export_args" to fix/add a few things. > One of these is that "ex_flags" is an int, but the flags are defined in > mount.h > as MNT_xx bits that now exceed 32bits (mnt_flag is now uint64_t). >

Re: debugging a run of poudriere-bulk

2018-10-03 Thread Matthias Apitz
El día miércoles, octubre 03, 2018 a las 01:41:14p. m. +0200, Matthias Apitz escribió: > > Hello, > > > I'm trying to nail down PR 231532 of a port which fails to build in > poudriere. In the last phase of the ports build, while creating the pkg > of the built port with pkg-static, this crashe

Re: which way to update export_args structure?

2018-10-03 Thread Rick Macklem
Gary Jennejohn wrote: [stuff snipped] >In B, shouldn't ex_flags become uint32_t if all 32 bits can contain >flag bits? You could. For B) my intent was to leave the structure exactly the same as the old versions and only add new fields at the end. The current compatibility code in head does bcopy(

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread Johannes Lundberg
On Wed, Oct 3, 2018 at 2:30 PM Jakob Alvermark wrote: > On 10/3/18 3:06 PM, David Wolfskill wrote: > > On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: > >> > >> Do the headphones work with this patch? > >> > >> Index: sys/dev/sound/pci/hda/hdaa.c > >> ===

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread Jakob Alvermark
On 10/3/18 3:06 PM, David Wolfskill wrote: On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: Do the headphones work with this patch? Index: sys/dev/sound/pci/hda/hdaa.c === --- sys/dev/sound/pci/hda/hdaa.c    (r

Re: Sound issues with Dell Latitude 7490 (kabylake)

2018-10-03 Thread David Wolfskill
On Mon, Oct 01, 2018 at 11:12:25PM +0200, Jakob Alvermark wrote: > > Do the headphones work with this patch? > > Index: sys/dev/sound/pci/hda/hdaa.c > === > --- sys/dev/sound/pci/hda/hdaa.c    (revision 339076) > +++ sys/dev/soun

debugging a run of poudriere-bulk

2018-10-03 Thread Matthias Apitz
Hello, I'm trying to nail down PR 231532 of a port which fails to build in poudriere. In the last phase of the ports build, while creating the pkg of the built port with pkg-static, this crashes: # tail /usr/local/poudriere/data/logs/bulk/freebsd-r338641-ports-20180920/2018-10-03_11h32m17s/log

Re: linux-c7 and opengl apps?

2018-10-03 Thread blubee blubeeme
On Wed, Oct 3, 2018 at 5:40 PM Johannes Lundberg wrote: > Hi > > Have anyone successfully run opengl apps with linux-c7? > > Linux opengl apps works great with linux-c6 on gpu < kabylake but > linux-c6-dri does not include support for kabylake gpus. > Linux glxinfo in c7 show support for hardware

linux-c7 and opengl apps?

2018-10-03 Thread Johannes Lundberg
Hi Have anyone successfully run opengl apps with linux-c7? Linux opengl apps works great with linux-c6 on gpu < kabylake but linux-c6-dri does not include support for kabylake gpus. Linux glxinfo in c7 show support for hardware rendering on kabylake but any attempt to run an opengl app results in

Re: which way to update export_args structure?

2018-10-03 Thread Gary Jennejohn
On Wed, 3 Oct 2018 00:40:27 + Rick Macklem wrote: > Hi, > > I am working on updating "struct export_args" to fix/add a few things. > One of these is that "ex_flags" is an int, but the flags are defined in > mount.h > as MNT_xx bits that now exceed 32bits (mnt_flag is now uint64_t). > For no