Re: [gentoo-user] Mac Mini with Grub booting Mac OSX and Windows?!

2013-06-05 Thread Tamer Higazi
Am 30.05.2013 10:04, schrieb Andrea Conti:

 
 No. :)
 
 While Intel Macs are EFI platforms, they have an early and quirky
 implementation that cannot properly boot Windows in EFI mode


I hope you are not right for the latest MAC Mini, I would like to buy.
PS: Sorry, long line


Tamer



Re: [gentoo-user] baselayout 2 module arguments

2013-06-05 Thread Mick
On Tuesday 04 Jun 2013 14:26:50 William Kenworthy wrote:
 I am trying to get an argument passed to a kernel module - it works like
 below but not using the /etc/conf.d/modules file.
 
 insmod
 /lib/modules/3.8.13-gentoo/kernel/drivers/media/usb/em28xx/em28xx.ko
 card=46
 
 In /etc/conf.d/modules I have
 module_em28xx_args=card=46
 
 
 The only odd bit is its a qemu vm using usbip to connect to the usb
 stick on another PC but it works manually (at least the card bit ...)
 
 Have I made a mistake with the card arguments somehow thats not obvious?

Have you tried to add module options in /etc/modprobe.d/ directory?  e.g. 
create a file em28xx.conf and add in it:

options em28xx card=46

-- 
Regards,
Mick


signature.asc
Description: This is a digitally signed message part.


Re: [gentoo-user] baselayout 2 module arguments

2013-06-05 Thread William Kenworthy
On 05/06/13 15:33, Mick wrote:
 On Tuesday 04 Jun 2013 14:26:50 William Kenworthy wrote:
 I am trying to get an argument passed to a kernel module - it works like
 below but not using the /etc/conf.d/modules file.

 insmod
 /lib/modules/3.8.13-gentoo/kernel/drivers/media/usb/em28xx/em28xx.ko
 card=46

 In /etc/conf.d/modules I have
 module_em28xx_args=card=46


 The only odd bit is its a qemu vm using usbip to connect to the usb
 stick on another PC but it works manually (at least the card bit ...)

 Have I made a mistake with the card arguments somehow thats not obvious?
 
 Have you tried to add module options in /etc/modprobe.d/ directory?  e.g. 
 create a file em28xx.conf and add in it:
 
 options em28xx card=46
 

Brilliant, thanks Mick.  I am using the latest baselayout 2 and was
going by its instructions (which dont work) and didn't think to use the
old way.

Now I have a video0, but no /dev/dvb so thats the next hurdle to be
tackled tomorrow.

Thanks,
BillK





Re: [gentoo-user] baselayout 2 module arguments

2013-06-05 Thread Neil Bothwick
On Wed, 05 Jun 2013 22:39:48 +0800, William Kenworthy wrote:

 Now I have a video0, but no /dev/dvb so thats the next hurdle to be
 tackled tomorrow.

Missing firmware?


-- 
Neil Bothwick

Newspaper Ad: Dog for sale: eats anything and is fond of children.


signature.asc
Description: PGP signature


[gentoo-user] Crash dumps

2013-06-05 Thread Michael Mol
With some recent software updates (well, a month's worth...didn't
realize I wasn't syncing on my laptop), X now frequently dies on me.

As it happens, I've already rebuilt all the software on the system...I
do an emerge -e @world every time there's a gcc update. To my knowledge,
there's no old cruft, no old binaries, nothing for depclean to remove or
revdep-rebuild to fix, etc. etc.

The next step is to actually inspect the crashes and see what's
happening...but for this to be even remotely convenient, I'd like my
system to start accumulating crash dumps for my inspection. Fortunately,
I have -ggdb in CFLAGS for just such occasions, so I'm not wanting for
symbols...

Trouble is...I don't remember how to do this. How do I enable crash
dumps, and how do I control where the dump files are dropped?



signature.asc
Description: OpenPGP digital signature


Re: [gentoo-user] Crash dumps

2013-06-05 Thread Paul Hartman
On Wed, Jun 5, 2013 at 1:09 PM, Michael Mol mike...@gmail.com wrote:
 With some recent software updates (well, a month's worth...didn't
 realize I wasn't syncing on my laptop), X now frequently dies on me.

 As it happens, I've already rebuilt all the software on the system...I
 do an emerge -e @world every time there's a gcc update. To my knowledge,
 there's no old cruft, no old binaries, nothing for depclean to remove or
 revdep-rebuild to fix, etc. etc.

 The next step is to actually inspect the crashes and see what's
 happening...but for this to be even remotely convenient, I'd like my
 system to start accumulating crash dumps for my inspection. Fortunately,
 I have -ggdb in CFLAGS for just such occasions, so I'm not wanting for
 symbols...

 Trouble is...I don't remember how to do this. How do I enable crash
 dumps, and how do I control where the dump files are dropped?

You may have already seen it, but this article may lend some clues:

http://www.gentoo.org/proj/en/qa/backtraces.xml



Re: [gentoo-user] baselayout 2 module arguments

2013-06-05 Thread William Kenworthy
On 05/06/13 22:45, Neil Bothwick wrote:
 On Wed, 05 Jun 2013 22:39:48 +0800, William Kenworthy wrote:
 
 Now I have a video0, but no /dev/dvb so thats the next hurdle to be
 tackled tomorrow.
 
 Missing firmware?
 
 

You could be right ... but google makes no mention of firmware being
required. I'll look into it tonight.

The usb stick I have firmware for loads it and then dies (a usbip
problem I think, resets after load)

BillK