Re: Memory for iBook

2001-07-26 Thread Yves
The book uses SO-DIMM sdram. I have bought PC100 SO-DIMM 128 MBn whithout any
problem...

James Tyson([EMAIL PROTECTED])@Thu, Jul 26, 2001 at 05:17:55PM +1200:
> 
> Hi all.
> 
> Does anyone know exactly what sort of RAM the new 2001 ibook takes?
> Does the following sound like it will work?
> 
> Kingmax PC100 144 pin
> 128mb SO-DIMM

I think this one can do it (at least it sounds like ;-))

> 128MB PC100 144 pin
> SODIMM Kingmax * Suitable for most newer notebooks

The same here...

Yves



Re: Icebooks

2001-07-27 Thread Yves
> The modem seems to work file, I am using 2.4.6-benh as my kernel, and this
> is what I see in dmesg:
> 
> PowerMac Z8530 serial driver version 2.0
> tty00 at 0xc98da020 (irq = 22) is a Z8530 ESCC (cobalt modem)
> tty01 at 0xc98e1000 (irq = 23) is a Z8530 ESCC
> 
> pointing minicom at /dev/ttyS0 seems to be a modem (atleast I can type
> "ATZ" and it says "OK").

Me too, but when I dial a number, it answers weird things... but nothing
is dialed out...

Yves



Re: Icebooks

2001-07-30 Thread Yves
James Tyson([EMAIL PROTECTED])@Mon, Jul 30, 2001 at 08:36:13AM +1200:
> > Wow, it works!! sorta. Well, you're right, I got beep. As far as 
> > anything 
> > elsewell, I am figuring it is normal at this stage in the 
> > driversbut 
> > I will mention it just to make sure what I am seeing is the same as anyone 
> > else: when I play an ogg or mp3 the sound is extremely distorted. It is 
> > till 
> > very clearly the music I am expecting, but it sound a lot like the inputs 
> > are 
> > being over driven. I have used set_eq to lower the volume...works great. 
> > Shouldn't be hard to script up a little widget to run it until there is 
> > something better. 
> > Is there someplace I should check(the place I got the drivers from??) 
> > to see 
> > if they have been updated at all? Is there a mini-mailing list of sorts? 
> > Thanks again for the help and pointers.
> 
> I assume that the distortion that you and I are both hearing is related to
> the unsigned/signed issue that is mentioned on the website.

I agree with that. I have swapped the translators of dmasound_core.c on my
icebook, and I can now listen music with xmms, at high volume (well with set_eq 
1...).

Now that this ugly hack is working, it may be interesting to clean things 
up to have the driver in the kernel. I'll try to do something, but I'm not 
a driver writter ;-)

> Still, it's nice to see something working.

I say, it's nice to hear it worked ;-)

Regards,

Yves



Re: Icebooks

2001-07-31 Thread Yves
John Hughes([EMAIL PROTECTED])@Mon, Jul 30, 2001 at 05:17:36PM -0400:
> On Monday 30 July 2001 01:46, Yves wrote:
> > I agree with that. I have swapped the translators of dmasound_core.c on my
> > icebook, and I can now listen music with xmms, at high volume (well with
> > set_eq 1...).
> 
> Do you have the hacked dmasound_core.c file? or a patch that does it? I 
> looked through it, but am not a programmer and was not sure what to change.
> Thanks
> 
Not released a patch, since it's very ugly since it breaks the driver
for other dmasound devices...
The changes are very simple :
The file is driver/sound/dmasound/dmasound_core.c

Near the line 290, you change the different cases as follow

static ssize_t sound_copy_translate(TRANS *trans, const u_char *userPtr,
size_t userCount, u_char frame[],
ssize_t *frameUsed, ssize_t frameLeft)
{
ssize_t (*ct_func)(const u_char *, size_t, u_char *, ssize_t *, 
ssize_t);

switch (dmasound.soft.format) {
case AFMT_MU_LAW:
ct_func = trans->ct_ulaw;
break;
case AFMT_A_LAW:
ct_func = trans->ct_alaw;
break;
case AFMT_S8:
ct_func = trans->ct_s8;
break;
case AFMT_U8:
ct_func = trans->ct_u8;
break;
case AFMT_S16_BE:
ct_func = trans->ct_s16be;
break;
case AFMT_U16_BE:
ct_func = trans->ct_u16be;
break;
case AFMT_S16_LE:
ct_func = trans->ct_s16le;
break;
case AFMT_U16_LE:
ct_func = trans->ct_u16le;
break;
default:
return 0;
}
/* if the user has requested a non-existent translation don't try
   to call it but just return 0 bytes moved
*/
if (ct_func)
return ct_func(userPtr, userCount, frame, frameUsed, frameLeft);
return 0;
}

Note that it is really an ugly patch... I have _not_ looked if these changes 
are necessary, or if 
another proper way exists... It worked, that's all

I don't know how to handle this properly. Do we have to swap the translators 
(or not use it
seems better way...)

Yves



Re: modem on the new ibook2

2002-07-05 Thread yves
Quoting vinai <[EMAIL PROTECTED]>:

> I think (and I have nothing to go on, except for
> my-own-you-should-not-
> trust-your-life-with-memory :) that the very first version of the
> ibook2
> (400 and 500 MHz G3 with a 66 MHz system bus) _DID_ have full hardware
> modems.  It was the revision after that (500 and 600 MHz, with a 100
> MHz
> bus) in which Apple changed to the conexant "soft" modem.
> 
> Can anyone confirm or refute this ?

My 1st generation ibook2 (500 Mhz with 66 Mhz bus) have a working modem, I 
confirm. It's 
the next generation (600 Mhz and 100Mhz bus) that have the problematic modem...

  Yves


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: External monitor on ibook2

2002-07-10 Thread Yves
Le mer 10/07/2002 à 10:44, Edd Dumbill a écrit :
> On Wed, 2002-07-10 at 05:37, Bastien Nocera wrote:
> > 
> > Use the framebuffer driver instead of the r128 one in X.
> > 
> > If you search carefully the archives, somebody has reported success with
> > this IIRC. I never tried it though.
> 
> This isn't correct.  The most that's been achieved is to find that the
> external monitor can be driven OK using the OFfb driver, but this is
> near useless for any presentational purposes.

On the 1st gen ibook2, the problem exists in fb mode. A quick try with
"fbset -depth x" with x>8 make the problem quite visible. 

It's like the pixel size is *2 on the screen (bigger letters and co).

And, if the 8 bit mode is usable in 2 colors, the color mapping is not
correct either... (Tryed in 8 bits with X or links -g)...

So, I think that the fb aty128 cannot work on external screen, at least
with the M3.

Yves


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Sony Handycam as USB mass storage hang

2002-09-04 Thread Yves
Eric,


 It could be a endianess error on some parts of the driver. Can you
check if your camera is working on an x86 platform ? 
I have experienced problems with the ISD200 Driver a few months ago, and
it's corrected now (endianess pbs). However, the driver wasn't working
at all at this time...

My 2cts,

    Yves





Re: Stupid wireless questions

2002-09-04 Thread Yves
Le mer 04/09/2002 à 10:19, Rogério Brito a écrit :
> 
>   Well, I have some questions here regarding wireless cards,
>   with which I'd appreciate if I got any help.
> 
>   I'll probably be saving some money the next few months up to
>   Christmas to buy me things for wireless access.
> 
>   1 - Is the airport card (the one that goes inside the iBook)
>   completely supported under Linux?

Yep, it works without any problems... 
Install the wireless-tools to set it up (with iwconfig), and you can use
it.


>   2 - If one would purchase a PCMCIA card for a x86 notebook,
>   which brands would be recommended, regarding the quality
>   of support under Linux (and also availability)?

I'm not an expert, but I think orinoco cards works fine and have an
external antenna plug. It can be usefull...

>   3 - Can anything base station be used in place of Apple's
>   expensive base station? Would there be any loss of
>   functionality?

I have an airport card in my ibook, and I have used non-apple bases
without problems.It's just a matter of channels. My card is a french
one, so I only have access to channels 10 to 13. If the base is a US
one, on channel 6 for instance (very common), it can't work, you have to
switch it to channel 10. Unless if someone know how to "extend" an
airport card (in which case I am _very_ interested...)

> 
>   I'm not exactly sure if I understand the concept of a base
>   station. To me, all descriptions that I read sound just like a
>   dedicated router (and possibly doing NAT) with ability of
>   connecting via waves (and possibly through ethernet). Is that
>   right?

Sounds like the same to me. However, the firmware in the wireless card
in the base is somewhat different. ( Yes, open a base, and you will
probably see a pcmcia connector with a standard 802.11b card in it ;-).
There is a few more electronics, but the radio part is there...). If the
firmware is the same, you will have to run in "Had-Hoc" mode which is
less interesting...

>   If it is, then a base station could be substituted with, say,
>   an old computer with another (cheap) wireless card, right?

Yes, but I _think_ (not an expert though), you will have to flash the
card. Instead you will have to be in "Ad-Hoc Mode" which one permit to
clients to talk together without a base. But this mode doesn't support
stats so no signal strength and so on... But I'm sure it's doable...


Yves



Re: Stupid wireless questions

2002-09-05 Thread Yves
Le mer 04/09/2002 à 22:33, Wilhelm *Rafial* Fitzpatrick a écrit :
> >Note that Apple's latest MacOS airport driver update (or MacOS X 10.2
> >update) will update the airport card firmware to revision 8.40 which
> >seems to have lots of problems with our driver.
> 
> Is there any incantation to report the firmware version on an airport 
> card?  I've poked around with iwlist and iwconfig and haven't found 
> anything.

For me, the magic incantation is "modprobe airport", and it shows the
version of the firmware. If it doesn't, you may try "dmesg" to have the
latest kernel messages. It's printed when the driver is loaded. So if
your airport is in your kernel, and not as a module, you should see it
during the boot process. You can read /var/log/dmesg in this case...

Yves




dmasound problem on Cube

2002-09-29 Thread yves
   Hi there,


 I currently have a problem with a cube. I can't have the sound working...
 I've just installed a woody, but the "modprobe dmasound_pmac" command
 doesn't work. It says dmasound_pmac: couldn't find 'sound' OF node. I've
 used the sound without problems on my ibook2, but this cube seems to be
 different.
May be someone have the solution ?

Please, CC me, I'm not at home, and I can't read the list archive every
day...

Yves




package hotkeys and libdb3...

2002-01-10 Thread Yves
Hello,

  I've tried to use the hotkeys package on my sid to have the ibook2
special keys working. But the problem is strange, since hotkeys seg
fault. I've traced the problem, and it appears that it segfault when
calling "db_create" (conf.c line 246). I've tried to repackage libdb3
(apt-get source and debuild), but the problem is still here.

Anybody has an idea ??

Yves






usbstorage isd200 and ppc

2002-01-11 Thread Yves
Hello there,

  I have an Archos jukebox 20 (usb-storage isd200) which is working
perfectly with an x86 based box. However, on my ibook2 (ppc based), I
cannot make it work. I can provide the debug informations if needed, but
before I wanted to know if someone is working on it...
The usb-ohci module is used (2.4.17 kernel).

Regards,

Yves






correct setup of the boot with the new PM dual 867

2002-11-15 Thread Yves Combe

Bonjour,

I have the new PM dual 867, and i met the same pb : OF trie to boot hd: 
instead of ultra2:

I have solved the pb making
mkofboot -o ultra2:3
after the correction in the yaboot.conf.

the modem is working, with the HCF drivers but i  had to add a ligne in 
the ben's source kernel (in pmac_features.c, section rackmac or

something like that).

the graphic card (GeForce4 MX 420) is only working with openfirmware fb, 
but in depth 8. and the X is blue.

How can i have a correct depth 24?

This card is in the nv driver in the CVS version of XF86, maybe i will 
try next.


@+
--
Yves Combe





Re: GeForce4 on Linux PowerPC

2002-12-20 Thread Yves Combe
On Fri, 20 Dec 2002 09:42:23 +0100
Alessandro Astarita <[EMAIL PROTECTED]> wrote:

> I have read your email in linux.debian.ports.powerpc newsgroup and I 
> write you because I have the same problem with GeForce4 graphic card 
> and XFree86. It only works with offb driver in 8bit mode (X is blue!!).
> 
> I have installed last XFree from 
> 
> http://people.debian.org/~daenzer/dri-trunk/
> 
> and I have compiled and installed last XFree86 nv driver from CVS, but X 
> freeze during startup with a black screen.
> 
> Do you have found a solution for this problem?

Yes, but i am not sure my solution is good for you.

Firstly i have the GeForce4 MX 420, with Apple Display Studio 15"

I have tried to compile the unstable's deb X4.2.1-4 but my screen stay black.

I have tried the XFREE CVS version with nv driver, but the CTRL ALT Fn did not 
work,
and some programs (as gcompris) not well.

Here is what i have done finaly
- get the CVS version of XFree -(1)
- get the unstable' source of Xfree (4.2.1-4)  -(2)
- unpack a copy of the the upstream source in (2) -(3)
- put the nv driver of (1) in (3) -(4)
- re unpack the upstream source of (2) (5)
- make a diff between (5) and (4)
- put this diff in (2) as 
debian/patches/000_stolen_from_HEAD_nv_driver.diff -(6)
- compile the deb source modified (6)

i had an "unclean patch apply" with the patchs 082 087 088 090 (not sure of 
this number). I put this patches away (ati patch, i am not
concerned).

the result works in my machine with this Xfree 4.2.1 wiith cvs'nv . (2D accel 
only)

Of Course you use that only at your own risk. 

I think you'd better wait the release of Xfree 4.3

bye

-- 
Yves Combe






alpha version of knoppix MiB ppc looks for testeurs

2003-06-19 Thread Yves Combe
THIS IS AN ALPHA VERSION FOR TEST ONLY

It's a debian based LiveCD.
The description of the knoppix-MiB (i386 version) is here:
https://www.bouissou.net/knoppix-mib/doc-html/Knoppix-Mib.html

The PPC version works on my pmac dual mirrored doors and on an imac 500.
I have absolutely no idea if it can work on another machines. If you try, let 
me know your success and failures.

it's only a knoppix recompiled with a few modification (modelines, ...)
If you want to test it, and report me your debian configuration and your 
problems, it's in the PPC-alpha directory in the mirrors; please check md5sum 
et sig.

Missing features (looking at the PC version) and known problems:
* no swapfile (coming soon): you need at least 128M RAM, or a swap partition 
called swap (see below)
* pc keyboards instead of macintosh one's
* buttons 2 and button 3 emulation is not active by default.
* some programs crash or are incomplete (nessus).
*french language as a default
*somme option at boot time don't work (expert, failsafe)
* IF YOU HAVE A PARTITION CALLED "swap", IT WILL BE USED FOR  ENCRYPTED SWAP
AND WILL BE ERASED.

in my personnal configuration it work only with 
"knoppix video=ofonly flatpanel" (nvidia Geforce4 mx 420, apple studio 15) 
there is crtcnumber=# option in the boot too.

loop-aes and cryptoloop crypto are in the kernel. The mount has the patch for 
both.

don't try it if you not assume this fact: it will probably not work on your 
machine!!!

i just need some testeurs, thanks.

PS: kernel 2.4.20-ben10, XFree 4.3.0-0ds4, kde, OOo1.0.3(fr)

-- 
Yves Combe



pbbuttonsd no answer in keypress

2003-06-22 Thread Yves Combe
Hello,

I have a problem with pbbuttonsd: it runs ok, answer ok with powerprefs (seen 
with gtkpbbuttons), but do not answer to keypress (usb aplle keyboard in 
pmac).

any idea ?

-- 
Yves Combe




Re: pbbuttonsd no answer in keypress

2003-06-23 Thread Yves Combe
Le Lundi 23 Juin 2003 06:49, [EMAIL PROTECTED] a écrit :
> On Sun, 22 Jun 2003, Yves Combe wrote:
> > Hello,
hello

> > I have a problem with pbbuttonsd: it runs ok, answer ok with powerprefs
> > (seen with gtkpbbuttons), but do not answer to keypress (usb aplle
> > keyboard in pmac).

> I have a tibook 15", and i need to pres fn key + any key (obviously
> defined) to get it works. If i just pres the key it doesn't hapen
> anything.

Yes, of course. In powerprefs i have deselected the "fn key". But without 
success. There is no fn key in my pmac

-- 
Yves Combe
Formateur TICE
IUFM de Montpellier - Site de Nîmes



Re: alpha version of knoppix MiB ppc looks for testeurs

2003-07-01 Thread Yves Combe
Le Mardi 1 Juillet 2003 06:44, [EMAIL PROTECTED] a écrit :
> i just tryed the version 2e.
thanks for the test

> i have a 15" tibook
>
> it works great, but:
>
> it can't boot with X, i have to boot in "knoppix 3", then copy my
> XF86Config-4 to /etc/X11/, and the /etc/gpm.conf file too, then startx.
No. Try "/etc/init.d/xsession start" insteed of startx

Can you send me your XF86Config-4 ?
You can try with knoppix fb1024x768, or knoppix xserver=fbdev, at boot, i 
guess you have an ati card, that could work.

> still no aceleration. (now i'm not in mi tibook, but if is necesary i can
> send you the XFree.0.log file.)
Yes, please. I will look into this problem.

>
> I have some questions:

> how do you mount hfsplus filesystem. i saw de module, but how do you get
> the module? is it in 2.4.21 kernel? (i have 2.4.20benh10 kernel)

hfsplus is in the 2.4.21-ben1 i put into the iso.

mount -t hfsplus /dev/hdax /mnt/hdax should work.

> is the /usr/src/kernel-headers*/.config the file you use to compile the
> knoppix kernel?

Maybe. Sure is the /boot/config-2.4.21-ben1-mib21. I have juste done a make 
pmac_config for this kernel.

the kernel is benh's one. thank you benh.

> in knoppix-MIB in kde3.1.2 it is active the arts, but xmms use the OSS
> driver. If i tryed to do this (kde3.1.2 too) xmms give me an error
> message, about the apropiate plugin. How can i use arts and OSS?

Yes, this is a bug. I will correct that in the next version.

> I will continue testing the disc, and tell you my results. If you need
> some logs or something else to test, just tellme please.

thank you.

did the mouse button emulation work ? (F11 & F12)

-- 
Yves Combe



autodetection of the modelines (EDID ?)

2003-07-03 Thread Yves Combe
Hello,

I am looking for a détection of the modelines in debian. (for the liveCD i 
work on.)

the modelines generated by Xautocfg is out of sync on my display. I found the 
EDID file in the openfirmware device-tree, is there a program to parse it in 
debian ? is there another solution?

thanks,

-- 
Yves Combe



Re: autodetection of the modelines (EDID ?)

2003-07-04 Thread Yves Combe
Le Vendredi 4 Juillet 2003 12:32, Michel Dänzer a écrit :
> On Thu, 2003-07-03 at 22:55, Yves Combe wrote:
> > I am looking for a détection of the modelines in debian. (for the liveCD
> > i work on.)
> Both the radeon and nv drivers in current XFree86 CVS try to handle this
> on their own. Using those, putting
>
>   Modes   ""
>
> in the XF86Config-4 Display subsection might work in most cases.

OK, thank you.
The problem is i cannot guess the mode used in advance. Is for a live CD.

I found parse-edid ( is in the read-edid i386 source) wich works fine in the 
device-tree EDID and gives the preferred mode for the display.

What is the current status of CVS ?. Could it be usuable insteed of 4.3 now?
I have put the ds's 4.3 in the iso, i am not sure if using a cvs version could 
be a good thing.

thanks

-- 
Yves Combe
Formateur TICE
IUFM de Montpellier - Site de Nîmes



Installation of debian on G5 pmac?

2003-10-06 Thread Yves Combe
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

I would know if there is a solution to install a debian system on G5 pmac. 
Woody iso seems not to be bootable on it... and i guess the woody's kernel is 
not g5 compatible?

Is there a yaboot and a kernel g5 compatible?

Regards,

- -- 
Yves Combe
Formateur TICE
IUFM de Montpellier - Site de Nîmes
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.2 (GNU/Linux)

iD8DBQE/gRZkwGxkuyMGIowRAupzAJ9+7W950v9d3fYlcPFHw0M1HN6lJACfdLQF
Qq/7TnuuLzSDaHO0sdBC3n4=
=otms
-END PGP SIGNATURE-



Re: pmud problem: No Sleep support on this hardware, exiting!

2004-02-27 Thread Yves Combe

Carlos Perelló Marín a écrit :

As I said in the past, my TFT 15" iMac with a Nvidia GeForce2 MX/MX 400
sleeps and wakes up without problem since long ago, I think the problem
is only with laptops that should turn off the video card to save battery
power.


Wow! My pmac (bi G4 windtunnel, NVidia GeForce4 MX 420) sleeps but does 
not wake up, if i put MOTERBOARD_CAN_SLEEP in it's feature. How did you 
do that?


Regards,

--
yves



Re: G5 install media

2004-03-26 Thread Yves Combe

Eric Deveaud a écrit :
Bonjour Eric,


Hi,

I have a biG5 lying on my desktop, could someone point me to a iso
image that will allow me to install debian on this machine

thank's


Les k-mib-ppc-beta-preX sont des livecd à la knoppix. Tu peux utiliser 
debootstrap pour installer debian à partir d'elle.


Le dernière (k-mib-ppc-beta-pre12) ne marche pas sur les G5. Mais la 
pre10 si.

ftp://ftp.crihan.fr/mirrors/knoppix-mib.org/

La pre7 devrait suffire en fait (pas de X dedans: elle est plus petite).

Cordialement,

--
yves




Re: G5 install media

2004-03-26 Thread Yves Combe

Eric Deveaud a écrit :

On Fri, 26 Mar 2004, Yves Combe wrote:

ftp://ftp.crihan.fr/mirrors/knoppix-mib.org/



thank's I'll give a try to the pre10 or pre7
as you mentionned the pre12 does not work on the G5.


Thank you for the translation, and i apologize for french post.

The pre12 has a 64bits ppc kernel for g5, but unfortunatelly it seems 
broken: it makes a kernel oops.


pre7 is a good choice, it runs on g5 and has debootstrap and hfs+patched 
 parted;


pre10 has an autoconfigured X to test.

Regards,

--
yves




Re: G5 install media

2004-03-26 Thread Yves Combe

Eric Deveaud a écrit :

OK it work's but just a question before my 3 workmate kills me.
is there such news about the fan support ?

or should I have to put the machine to the server room ?

modprobe therm_pm72

--
yves




Re: G5 report problematic succes

2004-04-01 Thread Yves Combe

Sven Luther a écrit :

On Thu, Apr 01, 2004 at 04:50:33PM +0200, Eric Deveaud wrote:


Hi

today was quite work free, please don't repeat it to my boss ;-)
I started playing seriously with the G5

booting the k-mib-ppc-beta-pre-10, in single mode and isntalling debian
thru debootstrap was quite simple.



Notice that normally, you should have been able to use the
debian-installer for installing debian.


Of course it's the better way. does the parted d-i includes hfs+ resize 
patch?


My personnal plan is to include debian-installer in the knoppix-like 
iso, to use at least in net installation. i don't like scripts like 
knoppix-hdinstall.
I am not sure what to do if netinstall in not possible. Maybe use 
dpkg-repack after d-i.


Anyway the knoppix-like iso is not ready. There is work to do with.

Regards,

--
yves



Re: usbfs

2004-05-19 Thread Yves Combe

mammique a écrit :

Hi,

usbfs don't provide acces to normal users on a ibook benh-2.6.5-rc3, it
seems to be mounted correctly to provide acces to all users, as it works
on my x86 2.4.24 :

usbfs on /proc/bus/usb type usbfs (rw,devmode=0666)

But only root can acces to my digital camera via gphoto2.


in my fstab:
usbdevfs  /proc/bus/usb  usbdevfs devuid=0,devgid=102,devmode=0660 0 0

and people in the group 102 can use gphoto2

Regards,

--
yves


signature.asc
Description: OpenPGP digital signature


Re: Live-CD for PPC ?

2004-05-24 Thread Yves Combe

Kristian Peters a écrit :

Hello.

Does anybody know of a live-cd for powerpc ? (Maybe a ported Knoppix version or 
a less bloated or less colourful version ?)

http://ftp.crihan.fr/mirrors/knoppix-mib.org/


I want to demonstrate someone that linux is a good alternative to OSX.

It's depends on what machine you want use for that.

A running port, buggy, is the knoppix-MiB-PPC-alpha-2e.iso. It's an old 
proof of concept, but it works on Imac CRT, on some ibooks, on my pmac 
nvidia. Old macs (> 1 or 2 years). Seems does not works on eMacs nor 
iMac TFT. screenshots are here: ftp://[EMAIL PROTECTED]/K-MiB-PPC.


A work-in-progress-to-be-continued-when-i-have-time is 
k-mib-ppc-beta-preX. iso boots normally on all macs (G5 too). there is X 
autoconfigured to  test, but no applications yet. This one has been used 
to install debian on G5, recently.


Regards,

--
yves





signature.asc
Description: OpenPGP digital signature


Re: Let me know if you're looking for PowerPC parts

2006-08-24 Thread Yves-Alexis Perez
On Thu, 2006-08-24 at 04:57 -0400, Simon Raven wrote:
> WTH are ubuntu people posting here? 

There are gentoo people, and mandrake people too, which post here.
debian-ppc is one of the most (and maybe the most ?) ppc-user mailing
list on the net, where one can find help from other users and ppc-dev. 

On this particular mail one can wonder why here, but I think if
questions are ppc-related and not distro-related it's ok for everyone to
post here.

My 2 cents, though :)

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



no function keys in 2.6.18 ?

2006-08-26 Thread Yves-Alexis Perez
Hi list,

I've tested a vanilla 2.6.18-rc4 kernel, and it seems that I don't have
anymore function keys from F1 to F10. F11 and F12 work well.

outputs on xev for F1 gives:

KeyPress event, serial 30, synthetic NO, window 0x361,
root 0x4c, subw 0x362, time 1271655960, (35,29), root:(586,393),
state 0x0, keycode 101 (keysym 0x0, NoSymbol), same_screen YES,
XLookupString gives 0 bytes:
XmbLookupString gives 0 bytes:
XFilterEvent returns: False

KeyRelease event, serial 30, synthetic NO, window 0x361,
root 0x4c, subw 0x362, time 1271655999, (35,29), root:(586,393),
state 0x0, keycode 101 (keysym 0x0, NoSymbol), same_screen YES,
XLookupString gives 0 bytes:

I don't really know if I should report this on linuxppc-dev or
something. It seems that somebody on #debianppc irc channel had the same
issue on 2.6.18-rc2, so I guess there is something in the kernel, but I
don't really know where to report this...

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: no function keys in 2.6.18 ?

2006-08-27 Thread Yves-Alexis Perez
On Sat, 2006-08-26 at 17:42 -0700, brian wrote:
> hi, where did you get it ?

from kernel.org
> 
> what other versions are/ have you used lately ?

i'm currently running 2.7.17.7 from kernel.org
> 
> have you looked at ppckernel.org and ppczone/forums ?

not yet, i'll see
> 
> do you have kb w/ "fn" (shift) key or do you have
> the plain fn keys (sometimes i have had fn key appear
> stuck on for periods of time ... between updates).

If you mean the "Fn" key at the right of Ctrl, I didn't check but I
think it works. I'm speaking about F1->F10 keys on top of the keyboard.

> (what is your hardware/os anyway)

Oh yes, sorry. I'm running a powerbook g4 1.5 (powerbook 5,6), Linux
2.6.18-rc2 on debian sid. I've checked that it's indeed the kernel, when
I reboot on 2.6.17.7 everything is ok. I've changed some things in the
new .config (for example disabling adb) so I'll retry with a
known-working .config to see.

-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: no function keys in 2.6.18 ?

2006-08-27 Thread Yves-Alexis Perez
On Sun, 2006-08-27 at 02:23 -0700, brian wrote:
> well at ppckernel they suggest you *not* use
> kernel.org, they also have "specialized" page
> there for powerbook and powermac, they
> have 2.6.18-rc4, i was thinking about to try
> one but i was not sure...

afaik kernels on ppckernel aren't really useful, and maybe deprecated
> 
> at the other site i'll just summarize there
> are some stories from a few months back of 
> people with building kernels and stuck at best,
> at worst trashing their filesystems, which
> slowed me down a bit ... 

i never had problems with vanilla kernel. -rc4 is a release candidate so
It's not so strange to have bugs in them. I only wanted to report
them...
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: no function keys in 2.6.18 ? [FIXED]

2006-08-27 Thread Yves-Alexis Perez
On Sun, 2006-08-27 at 09:23 +0200, Yves-Alexis Perez wrote:
> I've changed some things in the
> new .config (for example disabling adb) so I'll retry with a
> known-working .config to see. 

Ok, for the record (I didn't know it), adb support is required even with
recent powerbooks. That fixed my problem.

Thanks Paul Collins for the "fnset -u" which triggered a "/dev/adb: no
such file or directory" with the previous kernel. I'm now running a
2.6.18-rc4 which have correct F1->F10 keys.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: iBook and batteries

2006-08-27 Thread Yves-Alexis Perez
On Sun, 2006-08-27 at 22:38 +0200, Sven Luther wrote:
> BTW, are those new free batteries a US only thingy, or will the rest
> of the
> world benefit too ? 

I'm concerned, and lots of (french) people around me too: check
https://support10.apple.com/index.html?lang=fr

Regards,
> 
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Kernel upgrade problem

2006-08-28 Thread Yves-Alexis Perez
On Mon, 2006-08-28 at 17:09 +0800, Lawrence Li wrote:
> I'm trying to upgrade the kernel from the default 2.6.8 to the latest
> (from kernel.org), and I followed the drill using make-kpkg. However,
> after the compilation began (i.e.: after "make-kpkg kernel_image") I
> was prompted with loads of yes or no questions, since I'm clueless
> about most of them I just press enter for default, but the compilation
> failed in the end (don't see the .deb file which is supposed to show
> up). I wonder if this is normal (to have so many - I think there are
> around 100 of them - prompts during the process)? Anyone has
> experience on this? 

If your really want to upgrade your kernel, I'd say you should use
debian packages (maybe upgrade to etch or use backports.org). If you
really really want to build your old kernel, begin using the .config
from the currently running kernel (try /boot/config-2.6.8-powerpc or
something like that and copy it to .config in the linux sources folder).
You will still have to answer some questions because kernel have changed
a lot between 2.6.8 and 2.6.17 but...

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xkb-data: Help needed for Macintosh keyboards

2006-08-29 Thread Yves-Alexis Perez
On Tue, 2006-08-29 at 01:24 +0200, Denis Barbier wrote:
> 
> In this version, Macintosh layouts are modified like PC ones,
> 3rd and 4th levels are kept in the 1st group instead of belonging
> to a 2nd group.  You may need additional options (see for instance
> /usr/share/X11/xkb/rules/xorg.lst) to fit your needs.
> Please test and file bug reports against xkb-data, I really need
> your help to fix bugs and thus have a chance to upload into unstable. 

I'll try to test those, when I have time. Currently I use my own
macintosh_vndr/fr because the one there doesnt work with french keyboard
from powerbook 5,6 (@/# and  are inverted, for example). If you want
I can provide it.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: can not switch to virtual terminal since upgrading kernel and gdm

2006-08-29 Thread Yves-Alexis Perez
On Tue, 2006-08-29 at 16:29 +0200, Christoph Ewering wrote:
> P.S. I found some articles in the list with a related problem - this  
> was solved by creating /dev/adb and to check with "fnset -u" , well  
> here it is: 

manually creating /dev/adb won't help if you don't have driver support.
You should check that ADB support is builtin or that the module is
loaded

(CONFIG_ADB=y and CONFIG_INPUT_ADBHID=y should help)

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: [Success!] Airport Extreme

2006-08-30 Thread Yves-Alexis Perez
On Wed, 2006-08-30 at 09:04 +, Jack Malmostoso wrote:
> apt-get install wireless-tools bcm43xx-fwcutter networkmanager

hmhm, what kernel version are you using ? I currently need to ip l set
eth1 up before trying to associate, and networkmanager really don't know
how to handle this, it seems. And I still need to modprobe -r bcm43xx /
modprobe bcm43xx before associating to a wpa2/eap-tls network (some
reset problems I guess).
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xkb-data: Help needed for Macintosh keyboards

2006-08-30 Thread Yves-Alexis Perez
On Tue, 2006-08-29 at 22:48 +0200, Denis Barbier wrote:
> 5. What informations should be reported?
>=
> 
> Everything ;)
> Basically I have to make sure that there are no regressions before
> this package can be uploaded into unstable.  This means that if a
> layout did work previously, it should also work with this package.
> If a layout was broken, well I guess that there is no harm fixing
> it.  As I know nothing about Mac keyboards, I will need all
> informations you can provide:
>   * Mac model (ibook, g4, g5, etc)

Powerbook G4 1,5Ghz (Powerbook 5,6)

>   * Mac keyboard (USB or not, country variant)

Internal mac keyboard, french version

>   * xorg.conf options
Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "macintosh"
Option  "XkbLayout" "fr"
EndSection



>   * success or failure report?

'success' but I don't have modifier keys anymore (not backslash, not
pipe...) and <> / #@ are inverted.

>   * If possible, which console keymap you normally use

fr personal one

>   * If some keys have a different definition, please run
>   xkbcomp :0
> after running the setxkbmap command above, and send the generated
> server-0.xkb file with explanations of these differences. 

I'll send this one later when i'll be using my "own" keymap.

Regards,

-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xkb-data: Help needed for Macintosh keyboards

2006-08-30 Thread Yves-Alexis Perez
On Wed, 2006-08-30 at 15:50 +0200, Denis Barbier wrote:
> Salut,

Sorry for non french readers, the original mail is in french.
> 
> en lisant tes mails sur debian-powerpc, je me suis rendu compte de quelques
> oublis. Tout d'abord, j'ai merd symbols/macintosh_vndr/fr il faut enlever
> les lignes comprises entre  Begin modifier mappings  et  End modifier
> mappings 

Ok, I removed theses lines (commenting with // is ok ?)

> Pour les modifiers, j'ai besoin de savoir si  -option lv3:rwin_switch 
> sur la ligne de commande de setxkbmap (aprs avoir fait la correction
> ci-dessus) rsoud tes problmes. 

No, it doesnt fix the problem, I still don't have backslash, pipe etc
with the left alt/apple key.

> Il faudrait aussi que je sache quelles
> touches sont disponibles sur ton clavier pour ces modifiers, c'est--dire
> quelles sont les touches qui sont sur la ligne de la barre d'espace, avec
> leur keycode.
> Par exemple le clavier Dell UK sur lequel je tape actuellement ressemble 
>.--.--.-.--.---.--.--.
>| Ctrl | Logo | Alt | space| AltGr | Menu | Ctrl |
>`--^--^-^--^---^--^--'
> keycodes  3711564  65113 117109

There is a fn key at the far left of the keyboard which I don't coun't
because it's managed in kernel. Beside, there are:

   .--.-.--.--.---..
   | Ctrl | Alt | Apple | space| Apple | ^ |
   `--^-^--^--^---^'
keycodes  3764115  65116108
nameCtrl_L Alt_L Super_L space ISO_Level3_Shift KP_Enter

I tried ISO_Level3_Shift and it acts as the Mode_Switch I had with my
previous keymap. That is, I can access |\ etc... with this key + shift.
This modifier works, and I guess it works like on pc keyboards with
Altgr key. But I don't think it should be on right apple key, because in
OSX it's the left apple key wich does this (or maybe both, but I guess
people use the left one more often, and it can be useful to have one
more modifier key)

> Afin de gagner du temps, je t'envoie ce mail en priv. Je suis au boulot
> et ne peux pas lire les mails qui sont envoys  mon adresse, mais tu
> peux envoyer ces infos supplmentaires sur la liste. 

Done, and sorry for list disturbance :)

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xkb-data: Help needed for Macintosh keyboards

2006-08-30 Thread Yves-Alexis Perez
On Wed, 2006-08-30 at 16:05 +0200, Yves-Alexis Perez wrote:
> keycodes  3764115  65116108
> nameCtrl_L Alt_L Super_L space ISO_Level3_Shift KP_Enter 

And as a side note, Super_L can't be binded to shortcuts in gtk (afaik),
so I guess mode_switch was better (but I don't really know modifiers
magic)


-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xkb-data: Help needed for Macintosh keyboards

2006-08-31 Thread Yves-Alexis Perez
On Thu, 2006-08-31 at 12:28 +0200, Denis Barbier wrote:
> * xkb-data 0.8-10exp1 has been uploaded into experimental; it contains
>   above changes and also:
>   - debian/patches/macbook_keycodes.diff.diff: Add a new macbook model
> to swap  and  keycodes for recent Mac boxes.

So I should begin to use macbook model ?

>   - Fix French modifiers 

Mhhm what do you mean by "fixed". I still need to provide the
lv3:lwin_switch option (but maybe it's ok) to have \| etc.. (on the left
apple key, since I found out what the "rwin/lwin" was about :) )
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: [Success!] Airport Extreme

2006-09-01 Thread Yves-Alexis Perez
On Wed, 2006-08-30 at 09:56 +, Jack Malmostoso wrote:
> On Wed, 30 Aug 2006 11:50:08 +0200, Yves-Alexis Perez wrote:
> 
> > hmhm, what kernel version are you using ?
> 
> I am using the latest Debian kernel (2.6.17-2 IIRC). As for your issues...
> not sure, maybe WPA2 is the problem?

Well, I don't think WPA2 is the problem. The driver not correctly
supporting WPA2 may be the problem, yes.

But anyway I still need to pre-up the interface, even to associate with
an open network. And I don't think that network-manager knows how to do
that :/

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please test Macintosh keyboards with xkb-data 0.8-12exp1

2006-09-07 Thread Yves-Alexis Perez
On Wed, 2006-09-06 at 21:29 +0200, Denis Barbier wrote:
> Since all reports so far complained that  and 
> keys are swapped, this is now the default.  If this breaks
> your keyboard, please speak up. 

Here (powerbook 5,6) it works like a charm. Thanks, really.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please test Macintosh keyboards with xkb-data 0.8-12exp1

2006-09-08 Thread Yves-Alexis Perez
On Fri, 2006-09-08 at 19:31 +0200, Yannick Roehlly wrote:
> PS: By the way Denis, just a thought. On MacOs X, the
> "ISO_Level3_shift key"
> is the alt key. With xkb, it's the right alt key,  la PC AltGr. I
> don't
> know how good would be the idea to make the alt key ISO_Level3_shift
> and
> the apple key Alt_L(R). The advantage is for people switching from
> MacOS to
> GNU/Linux keep the same keyboard habits but the problem is in program
> where
> the "Alt +..." shortcuts becomes "Apple +..." shortcuts.
> 

Hem, under osx, to have the |\ etc. you need to press the apple key, not
the alt key (on a french keyboard at least).
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please test Macintosh keyboards with xkb-data 0.8-12exp1

2006-09-09 Thread Yves-Alexis Perez
On Sat, 2006-09-09 at 20:10 +0200, Yannick Roehlly wrote:
> As Bin said, here it's the alt key which is a modifier. The apple key
> is
> used for shortcuts (apple+o = Open...). 

Ah, yes, sorry :)
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



dvi output on powerbook g4 15" (5,6)

2006-09-15 Thread Yves-Alexis Perez
Hi list,

I'm trying to use the dvi output (without vga adaptor) on my mac. It
works well if (on the same screen) I use the vga adaptor, but when I use
a dvi cable (working on osx), it suddenly doesn't work anymore. Well,
Xorg detects it, and adjust the pseudo xinerama mode, but nothing is
displayed on it (as if the macintosh detected the screen but the screen
didn't detect the mac).

Is anyone had made working the dvi output without vga adaptor ?

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please test xkb-data 0.8-12exp2 in experimental

2006-09-19 Thread Yves-Alexis Perez
On Sun, 2006-09-17 at 11:24 +0200, Denis Barbier wrote:
> Hi,
> 
> xkb-data 0.8-12exp2 is in experimental.  The macintosh_old2 version
> has been removed from this version, there are only 2 models:
>   - macintosh_old (old kernels with ADB keycodes)
>   - macintosh (new kernels with PC keycodes)
> But 2 new options are added: apple:badmap and apple:goodmap to change
> keycodes for the 2 swapped keys.  This means that macintosh_old2
> model is replaced by macintosh.  If kernel misdetects the attached
> keyboard, users can select the apple:badmap option.

ii  xkb-data   0.8-12exp2 X Keyboard Extension (XKB)
configuration dat
Powerbook 5,6.

If I use the following xorg configuration:

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "macintosh"
Option  "XkbLayout" "fr"
Option  "XkbOptions""lv3:lwin_switch"
Option  "XkbOptions""apple:goodmap"
EndSection

(with or without apple:goodmap or apple:badmap option), the <>/@# keys
are swapped. The option doesn't change anything.

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please test xkb-data 0.8-12exp2 in experimental

2006-09-19 Thread Yves-Alexis Perez
On Tue, 2006-09-19 at 10:34 +0200, Denis Barbier wrote:
> It works for me.  Maybe another program overrides your xorg.conf
> settings, please try on command line:
>   setxkbmap -model macintosh -layout fr \
> -option -option lv3:lwin_switch -option apple:badmap 

[EMAIL PROTECTED]: setxkbmap -v -model macintosh -layout fr -option
lv3:lwin_switch -option apple:badmap
Warning! Multiple definitions of keyboard model
 Using command line, ignoring X server
Warning! Multiple definitions of keyboard layout
 Using command line, ignoring X server
Trying to build keymap using the following components:
keycodes:   macintosh+aliases(azerty)+macintosh(badmap)
types:  complete+numpad(mac)
compat: complete
symbols:pc(pc105)+macintosh_vndr/fr+inet(apple)+level3(lwin_switch)
geometry:   macintosh(macintosh)

It works when set from commandline and... it work when using the correct
syntax in xorg.conf:

Option  "XkbOptions""lv3:lwin_switch,apple:badmap"

With that syntax, everything works correctly, thanks.

Btw, maybe "goodmap" "badmap" aren't really good names for those
options. It seems that this should be handled in kernel area, but in the
meanwhile it's not really self-explanatory for user. "If you have a
powerbook or ibook (or macbook ?) from after february 2005, use the
badmap option" ??

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: dvi output on powerbook g4 15" (5,6)

2006-09-19 Thread Yves-Alexis Perez
On Tue, 2006-09-19 at 06:41 +, Soeren Sonnenburg wrote:
> rationale, I regularly switch between two configurations, single
> laptop internal display + laptop with external display and am now
> getting
> annoyed by always having to xrandr -s 0 / xrandr -s1 ... 

And xrandr doesn't seems to work with mergedfb/pseudoxinerama, so when
using external screen to extend the desktop, it's not really useful.

As a side note, I found my desktop quite slow when using mergedfb, but
don't really know what is happening.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please test xkb-data 0.8-12exp2 in experimental

2006-09-20 Thread Yves-Alexis Perez
On Mon, 2006-09-18 at 19:11 +, Jörg Sommer wrote:
> Why is Fn+6 num_lock?

On my system, (powerbook 5,6), Fn+F6 -is- numlock (but I thought it was
handled by the kernel)
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: xkb-data with support for Mac keyboards into unstable

2006-09-25 Thread Yves-Alexis Perez
On Sat, 2006-09-23 at 02:19 +0200, Denis Barbier wrote:
> Please, test it, send feedback if something does not
> work or can be improved, write documentation for other
> powerpc users that could be included in xkb-data, etc.
> Thanks for your help. 

I don't really know if it's a xkb or a kernel problem, but here the
numeric keypad don't really work. I guess on osx Fn+u gives a 4, but it
doesn't here. If i numlock using Fn+F6, the led under F6 lights, but the
numeric keypad isn't activated.

Is this kernel land or userland ? 
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: CPU frequency scaling on G4 systems

2006-09-25 Thread Yves-Alexis Perez
On Mon, 2006-09-25 at 13:19 +0100, Roger Leigh wrote:
> Hi folks,
> 
> With current 2.6.17 and 2.8.16 Debian kernels, the following cpufreq
> modules are available:
> 
> $ find /lib/modules/$(uname -r) -name 'cpufreq*'
> /lib/modules/2.6.18-1-powerpc/kernel/drivers/cpufreq
> /lib/modules/2.6.18-1-powerpc/kernel/drivers/cpufreq/cpufreq_stats.ko
> /lib/modules/2.6.18-1-powerpc/kernel/drivers/cpufreq/cpufreq_userspace.ko
> /lib/modules/2.6.18-1-powerpc/kernel/drivers/cpufreq/cpufreq_ondemand.ko
> /lib/modules/2.6.18-1-powerpc/kernel/drivers/cpufreq/cpufreq_conservative.ko
> /lib/modules/2.6.18-1-powerpc/kernel/drivers/cpufreq/cpufreq_powersave.ko
> 
> However, loading any or all of these modules does not enable frequency
> scaling.  You don't get anything under, e.g.
> 
>   /sys/devices/system/cpu/cpu0/
> 
> or under /proc.
> 
> What else is needed to get CPU frequency scaling to work?  On other
> platforms, there are additional modules under kernel/arch/, but
> this is not the case for powerpc.
> 
> The system in question is a Mac Mini (7447A).
> 

On my powerbook 5,6, 2.6.18-rc6:

[EMAIL PROTECTED]: zgrep -i cpu_freq /proc/config.gz[~]
CONFIG_CPU_FREQ=y
CONFIG_CPU_FREQ_TABLE=y
# CONFIG_CPU_FREQ_DEBUG is not set
CONFIG_CPU_FREQ_STAT=y
CONFIG_CPU_FREQ_STAT_DETAILS=y
# CONFIG_CPU_FREQ_DEFAULT_GOV_PERFORMANCE is not set
CONFIG_CPU_FREQ_DEFAULT_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_PERFORMANCE=y
CONFIG_CPU_FREQ_GOV_POWERSAVE=y
CONFIG_CPU_FREQ_GOV_USERSPACE=y
CONFIG_CPU_FREQ_GOV_ONDEMAND=y
CONFIG_CPU_FREQ_GOV_CONSERVATIVE=y
CONFIG_CPU_FREQ_PMAC=y
[EMAIL PROTECTED]: ls /sys/devices/system/cpu/cpu0/cpufreq  [~]
total 0
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25 affected_cpus
-r 1 root root 4.0K 2006-09-25 14:25 cpuinfo_cur_freq
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25 cpuinfo_max_freq
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25 cpuinfo_min_freq
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25
scaling_available_frequencies
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25 scaling_available_governors
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25 scaling_cur_freq
-r--r--r-- 1 root root 4.0K 2006-09-25 14:25 scaling_driver
-rw-r--r-- 1 root root 4.0K 2006-09-25 14:25 scaling_governor
-rw-r--r-- 1 root root 4.0K 2006-09-25 14:25 scaling_max_freq
-rw-r--r-- 1 root root 4.0K 2006-09-25 14:25 scaling_min_freq
-rw-r--r-- 1 root root 4.0K 2006-09-25 14:19 scaling_setspeed
drwxr-xr-x 2 root root0 1904-01-01 22:56 stats
[EMAIL PROTECTED]:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_governors
conservative ondemand powersave userspace performance
[EMAIL PROTECTED]:
cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies
149 74
[EMAIL PROTECTED]: sudo
cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_cur_freq
74

Maybe the CPU in the mac mini doesn't support frequency scaling ?
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Try again : Linux X server issue with Powerbook G4 15'

2006-10-24 Thread Yves-Alexis Perez
On Tue, 2006-10-24 at 09:34 +0200, Mathieu Rigard wrote:
> Hi there,
> I've just install Debian Etch on my Powerbook G4 800MHz. Netinstall
> with 
> video=ofonly whas ok and all sims to be ok but when Etch try to enter 
> runlevel 5 and start x, my screen turn ok and black.
> I can't go in a shell for see my Xorg config because i don't now howo
> to 
> stop in 4 or 5 runlevel and the Ubuntu 6.0.6.1 ppc give me the same 
> issue even in video=ofonly.
> If someone has an idea
> regards 
Try to boot with "single" argument to kernel so it doesn't try to run
gdm. Remove /etc/X11/default-display-manager. Reboot, gdm isn't run,
you're at the console. Try to startx and see the logs.

You could also try to login via ssh and see X /var/log/Xorg.0.log

Could you attach your xorg.conf too ?

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Debian on new Macs with Intel CPU?

2006-11-13 Thread Yves-Alexis Perez
On lun, 2006-11-13 at 22:54 +0100, David Moerike wrote:
> What is to do when I want to run Debian 4.0 on the new Apple
> Macintosh 
> machines with Intel processors, especially the Xserve Server machine? 
> Does Debian for PowerPC work, or Debian for i386, or none?

Macintosh with Intel Core Duo run Debian i386
Macinotsh with Intel Core 2 Duo run Debian x86_64 or i386

I suggest you ask on related mailing list to ask about other support
because you won't find a lot of i386 help on a ppc list.

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: compiz startup error

2006-11-27 Thread Yves-Alexis Perez
On lun, 2006-11-27 at 14:58 +0800, William Xu wrote:
> | /usr/bin/compiz.real: Another window manager is already running on
> screen: 0
> | /usr/bin/compiz.real: No manageable screens found on display :0 

Just kill your window manager before running compiz. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: compiz startup error

2006-11-27 Thread Yves-Alexis Perez
On lun, 2006-11-27 at 18:56 +0800, William Xu wrote:
> i'm using Sawfish. So you mean, `pkill sawfish' then `compiz
> --replace'?

No, only pkill sawfish && compiz.
--replace is for window manager that implements the replace "protocol"
(i don't know many, metacity is one of them, iirc).
> 
> That doesn't seem to work, if i kill sawfish, it got restarted
> automatically again.. 

Then I can't help you. Maybe look in sawfish documentation on how to
kill it. 


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Airport Extreme Support

2006-12-14 Thread Yves-Alexis Perez
On jeu, 2006-12-14 at 20:48 +, Marco Stagno wrote:
> I'm able to make it works without encryption, but I have several
> troubles
> with WPA (I'm using wpa_supplicant).. it seems the driver doesn't
> support
> something... 

I'm using bcm43xx with wpa_supplicant (WPA2 PSK and WPA2 EAP-TLS)
without problems. You may have to unload/reload the driver before doing
so. I'm running debian sid 2.6.18 kernel.

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Airport Extreme Support

2006-12-15 Thread Yves-Alexis Perez
On ven, 2006-12-15 at 22:27 +, Marco Stagno wrote:
> I'm trying with WPA-PSK but I still have troubles (I'm using 2.6.18 me
> too).
> 
> Can I ask you if what I'm doing is correct?

I'm now using network-manager, but before that I had a
wpa_supplicant.conf.local with network configuration, and
a /etc/network/interfaces with:

iface eth1 inet dhcp
   pre-up ip link set eth1 up
   wpa-driver wext
   wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf.local

Then, I only did:
ifup eth1 

to enable wireless. (sometimes a modprobe -r bcm43xx && modprobe bcm43xx
helped)

HTH.

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Airport Extreme Support

2006-12-17 Thread Yves-Alexis Perez
On dim, 2006-12-17 at 14:01 +0100, Yannick Roehlly wrote:
> Hi Yves-Alexis,
> 
> Which "front-end" do you use to network-manager? On my ibook,
> knetworkmanager does not see the airpost extreme interface
> (bug#398974)
> and nm-applet only works if I feed it with the wpa-psk key (not the
> ascii
> passphrase, bug #391364).

Hi,

I use nm-applet (network-manager-gnome). I need to provide it wpa-psk
and not ascii passphrase too, but I guess everybody do. Btw it's not
*that* bad as I use gnome-keyring too, and this wpa-psk is saved there.
> 
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: More Powerbook Questions.

2006-12-19 Thread Yves-Alexis Perez
On mar, 2006-12-19 at 18:52 -0500, Matthew Gracie wrote:
> 1) bcm43xx seems to be _really_ flaky; I can associate with an AP, I
> can
> run iwlist, but I can't seem to actually get an address via DHCP or
> play
> any active part in the network. I'm running 2.6.18-3 from Sid; a brief
> Googling has implied that the module in this particular kernel is
> flaky,
> but I can't find anywhere to download a .deb of 2.6.17 to try. Is my
> experience unusual? Does anyone know where I can get the old kernel
> from?

bcm43xx was working perfectly on 2.6.18-powerpc-3. I was using it on
open networks as well as wpa2 psk or eap-tls protected networks. So I
guess the problem is elsewhere.

> 
> 2) Is suspend-to-RAM supported on this machine at all? When I close
> the
> lid or hit the power button it seems to simply blank the screen.
> Again,
> I've Googled, and found conflicting reports.

Maybe the nvidia card isn't able to be put to sleep. In any case you may
want to try pbbuttonsd (or lighter, pmud).

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



LMU and i2c device on powerbooks

2006-12-21 Thread Yves-Alexis Perez
Hi,

I would like to ask people wich have a powerbook with keyboard backlight
to make some tests for me. I would like to know the path of some files
in /proc and compile a list for a piece of software.

I would like to know the (complete) path of the 'reg' file under:

/proc/device-tree/uni-n*/[EMAIL PROTECTED]/[EMAIL PROTECTED]/[EMAIL 
PROTECTED]/reg
or
/proc/device-tree/uni-n*/[EMAIL PROTECTED]/lmu-controller*/reg

And the complete file(s) path of the file containing "uni-n" in:
/sys/class/i2c-dev/i2c-*/name

With those informations if you can provide me kernel version and
powerbook model it'd be really nice.

For example, here:

PowerBook5,6 kernel 2.6.19.1
/proc/device-tree/[EMAIL PROTECTED]/[EMAIL PROTECTED]/[EMAIL PROTECTED]/[EMAIL 
PROTECTED]/reg
/sys/class/i2c-dev/i2c-7/name contains uni-n 0
/sys/class/i2c-dev/i2c-8/name contains uni-n 1

Thanks for your time.

Regards,

--
Yves-Alexis Perez


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Today dist-upgrade

2006-12-22 Thread Yves-Alexis Perez
On ven, 2006-12-22 at 08:47 +0100, leandro noferini wrote:
> Setting up gzip (1.3.9-1) ...

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=404048
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: IBM Java 5

2006-12-26 Thread Yves-Alexis Perez
On mer, 2006-12-27 at 09:09 +0200, Justin Hartman wrote:
> I've setup Sun
> before on an i386 system before but using the IBM version is new and
> very foreign to me. 

You can just use java-package which will recognize the IBM jre and build
a deb with it.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: changing mac address of Sun GEM

2007-03-22 Thread Yves-Alexis Perez
On jeu, 2007-03-22 at 07:29 +1100, Benjamin Herrenschmidt wrote:
> No, the driver doesn't implement it. Should be trivial to add though.

MHmh, I use a powerbook g4, my network card is a sungem too and I can
do:

sudo ip l set eth0 address 00:11:24:xx:xx:xx

and it works. I'm using a 2.6.20 kernel but I remember it working since
a long time so I'm wondering what doesn't the driver implement.

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: PowerBook G4 screen in Debian not as bright as Mac OS X or OpenBSD

2007-08-11 Thread Yves-Alexis Perez
On ven, 2007-08-10 at 21:07 +, Amit Uttamchandani wrote:
> However, I have a small issue with the brightness level. I had OpenBSD
> (4.1) and
> Mac OS X (10.4) installed at one point and the brightness level was
> much higher
> than what I have here in Debian. I installed pbbuttonsd and brightness
> keys were
> working but still can't get it as bright as OpenBSD or OS X. Searching
> the ppc
> mailinglist suggest the use of ikeys to give 15 brightness levels? But
> checking
> aptitude it seems that this package is out of date and would conflict
> with the
> installed pbbuttonsd. 

If you have the sysfs interface with radeon card, you can try to look
in /sys/class/backlight/radeonbl0/

Especially check for max_brightness and actual_brightness. If you want,
you can manually adjust it using:

echo 127 > /sys/class/backlight/radeonbl0/brightness

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: PowerBook G4 screen in Debian not as bright as Mac OS X or OpenBSD

2007-08-12 Thread Yves-Alexis Perez
On dim, 2007-08-12 at 00:22 +, Amit Uttamchandani wrote:
> I checked out the 'max_brightness' and 'actual_brightness' and both of
> them are
> set to 127. Is it safe to set them up at a higher level? 

If max_brightness is 127 you won't be able to set it to higher value.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: PowerBook G4 screen in Debian not as bright as Mac OS X or OpenBSD

2007-08-12 Thread Yves-Alexis Perez
On dim, 2007-08-12 at 00:32 +, Amit Uttamchandani wrote:
> Also, I've read something about pommed package available in testing
> and
> unstable. Do you have any experiences with that? 

>From my own experience, pommed is far simpler, lighter and better than
pbbuttonsd.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



brutal shutdown

2007-08-14 Thread Yves-Alexis Perez
Hi there,

since some days (don't know exactly when, but some days ago, and it
keeps increasing), my powerbook (g4/15" 5,6) stops suddenly. Brutal
shutdown without anything written in the logs.

Firs times were while it was idle, during the night for example, but
tonight it shutdown itself like 3 times, and once while I was in front
of it, typing on the keyboard.

I've checked the temperature:
[EMAIL PROTECTED]: cat /sys/devices/temperatures/sensor2_temperature
49
[EMAIL PROTECTED]: cat /sys/devices/temperatures/sensor1_temperature
50

I don't think it's that high, and if it was really a temperature problem
i'd say it should have been written in the logs. Maybe there is hardware
failure involved, but I don't really know.

Has someone got the same problem recently, and could this be a soft I'm
running (using Debian Sid, running pmud and pommed).

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: brutal shutdown

2007-08-15 Thread Yves-Alexis Perez
On mer, 2007-08-15 at 08:56 +0200, Michel Dänzer wrote:
> > I don't think it's that high, and if it was really a temperature
> problem
> > i'd say it should have been written in the logs. Maybe there is
> hardware
> > failure involved, but I don't really know.
> 
> It's possible, I had similar symptoms with one of the TiBooks that
> turned out to be due to a defective 'logic board'. One good test for
> this should be whether it happens in OSX as well.

Yeah, good idea. I don't really use OSX anymore and those shutdown
aren't easily reproducible (meaning, as they are kind of random,
"nothing happens" doesn't mean "everything is ok", even in osx)

Thanks for help, anyway.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: radeon driver updates for mac laptops

2007-08-30 Thread Yves-Alexis Perez
On mer, 2007-08-29 at 23:36 -0400, Alex Deucher wrote:
> Those of you with radeon based mac laptops please test the latest code
> in that ati git tree.  I recently added connector table and quirk
> information for mac laptops.  You will need at least xserver 1.3 and a
> recent version of xrandr (1.2.2 preferred) to test.
> 
> As far as I can tell there are three apple laptop variants:
> 
> ibook  - LVDS, TVDAC drives TV or VGA via
> dongle
> powerbook-duallink   - LVDS, TV, External TMDS/Primary DAC
> powerbook   - LVDS, TV, Internal TMDS/Primary DAC
> 
> To test, add:
> 
> Option "MacModel" ""
> 
> to the device section of your xorg config where  is one of the
> following:
> ibook
> powerbook-duallink
> powerbook 

I've successfully built the driver and tried it. xrandr recognises it,
and it detects correctly my output monitor, I can switch it on/off with
xrandr --auto, and it works as "cloned". I don't seem to be able to move
it to right (or left) using --right-of:

[EMAIL PROTECTED]: xrandr --output DVI-0 --mode 1024x768 --right-of LVDS
xrandr: screen cannot be larger than 1280x1280 (desired size 2304x854)

Any advice?

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: radeon driver updates for mac laptops

2007-08-30 Thread Yves-Alexis Perez
On jeu, 2007-08-30 at 21:01 +0200, Yves-Alexis Perez wrote:
> I've successfully built the driver and tried it. xrandr recognises it,
> and it detects correctly my output monitor, I can switch it on/off
> with
> xrandr --auto, and it works as "cloned". I don't seem to be able to
> move
> it to right (or left) using --right-of:
> 
> [EMAIL PROTECTED]: xrandr --output DVI-0 --mode 1024x768 --right-of LVDS
> xrandr: screen cannot be larger than 1280x1280 (desired size 2304x854)
> 
> Any advice?

And each time I start X I need to run xrandr --dpi 101 to adjust dpi
settings because by default it's set to 75:

(==) RADEON(0): X server will not keep DPI constant for all screen sizes
…
(II) RADEON(0): Output DVI-0 disconnected
(II) RADEON(0): EDID for output DVI-0
(II) RADEON(0): Output S-video disconnected
(II) RADEON(0): EDID for output S-video
(II) RADEON(0): Output LVDS connected
(II) RADEON(0): Output DVI-0 disconnected
(II) RADEON(0): Output S-video disconnected
(II) RADEON(0): Output LVDS using initial mode 1280x854
after xf86InitialConfiguration
(==) RADEON(0): DPI set to (75, 75)

OTH
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: radeon driver updates for mac laptops

2007-09-01 Thread Yves-Alexis Perez
On ven, 2007-08-31 at 09:45 +0200, Michel Dänzer wrote:
> On Thu, 2007-08-30 at 21:10 +0200, Yves-Alexis Perez wrote:
> > 
> > And each time I start X I need to run xrandr --dpi 101 to adjust dpi
> > settings because by default it's set to 75:
> 
> Try starting the X server with -dpi 101 .

Yes, but I'd prefer to have it detect automatically (especially because
the second screen won't be 101 dpi so I'll have to adjust it anyway).

Thanks for the tips, anyway!

Cheers,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Please unban S. Luther from debian-powerpc@lists.debian.org

2007-09-03 Thread Yves-Alexis Perez
On lun, 2007-09-03 at 21:44 -0500, David Moreno Garza wrote:
> If you don't like that, become a DD

So you have 2 years to search a good answer to his questions?
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: radeon driver updates for mac laptops

2007-09-04 Thread Yves-Alexis Perez
On mar, 2007-09-04 at 12:06 +0200, Michel Dänzer wrote:
> The default value should be derived from the display's EDID when
> available. 

So you're saying that the driver can't at the moment interpret the EDID
of the laptop panel?

/var/log/Xorg.0.log says:

(II) RADEON(0): EDID data from the display on connector:
Proprietary/LVDS --
(II) RADEON(0): Manufacturer: APP  Model: 9c20  Serial#: 16843009
(II) RADEON(0): Year: 2002  Week: 5
(II) RADEON(0): EDID Version: 1.3
(II) RADEON(0): Digital Display Input
(II) RADEON(0): Max H-Image Size [cm]: horiz.: 32  vert.: 22
(II) RADEON(0): Gamma: 2.20
(II) RADEON(0): No DPMS capabilities specified; RGB/Color Display
(II) RADEON(0): First detailed timing is preferred mode
(II) RADEON(0): redX: 0.600 redY: 0.350   greenX: 0.310 greenY: 0.550
(II) RADEON(0): blueX: 0.150 blueY: 0.115   whiteX: 0.320 whiteY: 0.330
(II) RADEON(0): Manufacturer's mask: 0
(II) RADEON(0): Supported additional Video Mode:
(II) RADEON(0): clock: 79.8 MHz   Image Size:  321 x 214 mm
(II) RADEON(0): h_active: 1280  h_sync: 1296  h_sync_end 1408
h_blank_end 1536 h_border: 0
(II) RADEON(0): v_active: 854  v_sync: 855  v_sync_end 858 v_blanking:
866 v_border: 0
(II) RADEON(0):  LTN152W3
(II) RADEON(0):  LTN152W3
(II) RADEON(0): Monitor name: Color LCD
(II) RADEON(0): EDID (in hex):
(II) RADEON(0): 00000610209c01010101
(II) RADEON(0): 050c0103802016780aa7a299594f8c26
(II) RADEON(0): 1d52540001010101010101010101
(II) RADEON(0): 0101010101012d1f51560c301070
(II) RADEON(0): 130041d6101800fe004c544e
(II) RADEON(0): 3135325733000a2000fe004c
(II) RADEON(0): 544e3135325733000a2000fc
(II) RADEON(0): 00436f6c6f72204c43440a20202b
finished output detect: 0

Regards,
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: radeon driver updates for mac laptops

2007-09-04 Thread Yves-Alexis Perez
On mar, 2007-09-04 at 20:23 +0200, Michel Dänzer wrote:
> On Tue, 2007-09-04 at 19:57 +0200, Yves-Alexis Perez wrote:
> > On mar, 2007-09-04 at 12:06 +0200, Michel Dänzer wrote:
> > > The default value should be derived from the display's EDID when
> > > available. 
> > 
> > So you're saying that the driver can't at the moment interpret the EDID
> > of the laptop panel?
> 
> I said quite the opposite... sounds like a bug that it doesn't, feel
> free to report a bug upstream.

You said "should", and I can tell it doesn't. I'll report a bug, thanks.
-- 
Yves-Alexis


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-26 Thread Yves-Alexis Perez
Sven Luther wrote:
> Hello all,
> 
> I have made a powerpc build of the experimental Xorg 6.9 RC1 packages
> available at :
> 

[snip]

> I am running them and they seem to work nicely with my Radeon 9800 Pro AIW, in
> all cases i have tested. Only thing missing is the tv-out support, and i need
> to see how to get the TV-tuner working, but this is not an X issue.

And did you manage to get DRI working ?

-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-26 Thread Yves-Alexis Perez
Sven Luther wrote:
> On Wed, Oct 26, 2005 at 09:34:24PM +0200, Yves-Alexis Perez wrote:
> 
> Sure, works fine. On Pegasos though, which is using only pcigart though. I
> tried tuxracer, glxgears, not much else i think, altough i was compiling
> quake3.
> 

It doesnt work here, but I'm really not sure I've got the right kernel
module. I'm currently using the one from 2.6.13.2.


-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-26 Thread Yves-Alexis Perez
Sven Luther wrote:
> On Wed, Oct 26, 2005 at 10:21:25PM +0200, Yves-Alexis Perez wrote:
> I am using 2.6.14-rc5, and indeed, i hear you need something as near to 2.6.14
> as possible.

Ok, that's why.

> 
> 
> You know about : http://people.debian.org/~luther/2.6.14-rc5, right ?
> 

Yeah, but, I prefer to build my "own" kernels. I'll give a try to these one.


-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-26 Thread Yves-Alexis Perez
Sven Luther wrote:
>>>
>>>You know about : http://people.debian.org/~luther/2.6.14-rc5, right ?
>>>

I cant manage to run the linux-image-2.6.14-rc5-powerpc kernel.
"/dev/hda2, can't mount root filesystem" (or something like this). I
think i'll build my own kernel based on 2.6.14-rc5, but i can't apply
the 003-fnkey patch for my 15" powerbook. Does someone know if the quick
hack (s/0x400/0x800) works ?

Regards,
-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-26 Thread Yves-Alexis Perez
Sven Luther wrote:
> Sure, it is a ramdisk kernel, and you need something like yaird to generate
> the ramdisk, and not forget to configure yaboot to use it.

Ok, thank you. I've tried it, and it doesnt work. I attach outputs from
glxinfo and Xorg.0.log.

As a side note, i've tried to build my own patched kernel with
003-fnkey.patch and it doesnt work. I think i'll go back to 2.6.13.2
because at the moment I need more my fn-key than DRI :)

Thank you for your help.


-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-26 Thread Yves-Alexis Perez
Sven Luther wrote:
> Sure, it is a ramdisk kernel, and you need something like yaird to generate
> the ramdisk, and not forget to configure yaboot to use it.

Ok, thank you. I've tried it, and it doesnt work. I attach outputs from
glxinfo and Xorg.0.log.

As a side note, i've tried to build my own patched kernel with
003-fnkey.patch and it doesnt work. I think i'll go back to 2.6.13.2
because at the moment I need more my fn-key than DRI :)

Thank you for your help.


-- 
Yves-Alexis Perez

PS: with the files, it's better...
name of display: :0.0
display: :0  screen: 0
direct rendering: No
server glx vendor string: SGI
server glx version string: 1.2
server glx extensions:
GLX_ARB_multisample, GLX_EXT_visual_info, GLX_EXT_visual_rating, 
GLX_EXT_import_context, GLX_OML_swap_method, GLX_SGI_make_current_read, 
GLX_SGIS_multisample, GLX_SGIX_hyperpipe, GLX_SGIX_swap_barrier, 
GLX_SGIX_fbconfig
client glx vendor string: SGI
client glx version string: 1.4
client glx extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_MESA_allocate_memory, 
GLX_MESA_swap_control, GLX_MESA_swap_frame_usage, GLX_OML_swap_method, 
GLX_OML_sync_control, GLX_SGI_make_current_read, GLX_SGI_swap_control, 
GLX_SGI_video_sync, GLX_SGIS_multisample, GLX_SGIX_fbconfig, 
GLX_SGIX_pbuffer, GLX_SGIX_visual_select_group
GLX extensions:
GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_import_context, 
GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_OML_swap_method, 
GLX_SGI_make_current_read, GLX_SGIS_multisample, GLX_SGIX_fbconfig
OpenGL vendor string: Mesa project: www.mesa3d.org
OpenGL renderer string: Mesa GLX Indirect
OpenGL version string: 1.2 (1.5 Mesa 6.4)
OpenGL extensions:
GL_ARB_depth_texture, GL_ARB_imaging, GL_ARB_multitexture, 
GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shadow, 
GL_ARB_shadow_ambient, GL_ARB_texture_border_clamp, 
GL_ARB_texture_cube_map, GL_ARB_texture_env_add, 
GL_ARB_texture_env_combine, GL_ARB_texture_env_crossbar, 
GL_ARB_texture_env_dot3, GL_ARB_texture_mirrored_repeat, 
GL_ARB_texture_rectangle, GL_ARB_transpose_matrix, GL_ARB_window_pos, 
GL_EXT_abgr, GL_EXT_bgra, GL_EXT_blend_color, GL_EXT_blend_func_separate, 
GL_EXT_blend_logic_op, GL_EXT_blend_minmax, GL_EXT_blend_subtract, 
GL_EXT_clip_volume_hint, GL_EXT_copy_texture, GL_EXT_draw_range_elements, 
GL_EXT_fog_coord, GL_EXT_multi_draw_arrays, GL_EXT_packed_pixels, 
GL_EXT_point_parameters, GL_EXT_polygon_offset, GL_EXT_rescale_normal, 
GL_EXT_secondary_color, GL_EXT_separate_specular_color, 
GL_EXT_shadow_funcs, GL_EXT_stencil_two_side, GL_EXT_stencil_wrap, 
GL_EXT_subtexture, GL_EXT_texture, GL_EXT_texture3D, 
GL_EXT_texture_edge_clamp, GL_EXT_texture_env_add, 
GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3, 
GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_rectangle, 
GL_EXT_vertex_array, GL_APPLE_packed_pixels, GL_ATI_texture_env_combine3, 
GL_ATI_texture_mirror_once, GL_ATIX_texture_env_combine3, 
GL_HP_occlusion_test, GL_IBM_texture_mirrored_repeat, 
GL_INGR_blend_func_separate, GL_MESA_pack_invert, GL_MESA_ycbcr_texture, 
GL_NV_blend_square, GL_NV_point_sprite, GL_NV_texgen_reflection, 
GL_NV_texture_rectangle, GL_SGIS_generate_mipmap, 
GL_SGIS_texture_border_clamp, GL_SGIS_texture_edge_clamp, 
GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow, 
GL_SGIX_shadow_ambient, GL_SUN_multi_draw_arrays
glu version: 1.3
glu extensions:
GLU_EXT_nurbs_tessellator, GLU_EXT_object_space_tess

   visual  x  bf lv rg d st colorbuffer ax dp st accumbuffer  ms  cav
 id dep cl sp sz l  ci b ro  r  g  b  a bf th cl  r  g  b  a ns b eat
--
0x23 24 tc  0 32  0 r  .  .  8  8  8  8  0 24  0  0  0  0  0  0 0 None
0x24 24 tc  0 32  0 r  .  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x25 24 tc  0 32  0 r  .  .  8  8  8  8  0 24  0 16 16 16 16  0 0 Slow
0x26 24 tc  0 32  0 r  .  .  8  8  8  8  0 24  8 16 16 16 16  0 0 Slow
0x27 24 tc  0 32  0 r  y  .  8  8  8  8  0 24  0  0  0  0  0  0 0 None
0x28 24 tc  0 32  0 r  y  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x29 24 tc  0 32  0 r  y  .  8  8  8  8  0 24  0 16 16 16 16  0 0 Slow
0x2a 24 tc  0 32  0 r  y  .  8  8  8  8  0 24  8 16 16 16 16  0 0 Slow
0x2b 24 dc  0 32  0 r  .  .  8  8  8  8  0 24  0  0  0  0  0  0 0 None
0x2c 24 dc  0 32  0 r  .  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x2d 24 dc  0 32  0 r  .  .  8  8  8  8  0 24  0 16 16 16 16  0 0 Slow
0x2e 24 dc  0 32  0 r  .  .  8  8  8  8  0 24  8 16 16 16 16  0 0 Slow
0x2f 24 dc  0 32  0 r  y  .  8  8  8  8  0 24  0  0  0  0  0  0 0 None
0x30 24 dc  0 32  0 r  y  .  8  8  8  8  0 24  8  0  0  0  0  0 0 None
0x31 24 dc  0 32  0 r  y  .  8  8  8  8  0 24  0 16 16 16 16  0 0 Slow
0x32 24

Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-27 Thread Yves-Alexis Perez
Sven Luther wrote:
> oh, you need the gl1-mesa-dri package from the mesa package, i think i did
> build it myself because it FTBFS, i may add it to the repo or something.

Ok, I tried to build it, but FTBS too. I'll retry if you put it on your
repo. And the quake3 you were building, was it a debian package ? :)

-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-27 Thread Yves-Alexis Perez
Sven Luther wrote:
> oh, you need the gl1-mesa-dri package from the mesa package, i think i did
> build it myself because it FTBFS, i may add it to the repo or something.
> 

With your help, i finally manage to build libgl1-mesa-dri. But when I
try to install it, it conflicts with xlibmesa-gl, which is mandatory for
lots of other packages

See:

[EMAIL PROTECTED]: wajig install libgl1-mesa-dri_6.3.2-2_powerpc.deb
dpkg: regarding libgl1-mesa-dri_6.3.2-2_powerpc.deb containing
libgl1-mesa-dri:
 libgl1-mesa-dri conflicts with libgl1
  xlibmesa-gl provides libgl1 and is installed.
dpkg: error processing libgl1-mesa-dri_6.3.2-2_powerpc.deb (--install):
 conflicting packages - not installing libgl1-mesa-dri
Errors were encountered while processing:
 libgl1-mesa-dri_6.3.2-2_powerpc.deb


Should I remove xlibmesa-gl ? Thanks for your time and sorry for the
disturbance.

-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: experimental Xorg 6.9 packages available at http://people.debian.org/~luther/xorg-x11-6.8.99.901.dfsg.1-1

2005-10-28 Thread Yves-Alexis Perez
Michel Dänzer wrote:
> 
> No, it provides libgl1, which is all that's needed. In other words: yes,
> remove xlibmesa-gl in favour of libgl1-mesa-dri.
> 

Ok, i've installed my libgl1-mesa-dri (with the help of dpkg
--force-conflicts --force-overwrite), removed xlibmesa-gl, built a
freshly released 2.6.14 kernel. It works, I have DRI :)

-- 
Yves-Alexis Perez




signature.asc
Description: PGP signature


signature.asc
Description: OpenPGP digital signature


status of fn-key.patch for 2.6.14

2005-10-28 Thread Yves-Alexis Perez
Hi there,

as some people now, the fn-key.patch [0] for powerbooks doesnt work with
2.6.14 kernels. I've seen some threads here with people trying to
correct this patch. Is there any progress ?

Regards.
-- 
Yves-Alexis Perez

[0]: http://seehuhn.de/comp/powerbook/#fnkey-patch


signature.asc
Description: OpenPGP digital signature


Re: status of fn-key.patch for 2.6.14

2005-10-28 Thread Yves-Alexis Perez
Jochen Voss wrote:
> Hello Yves-Alexis,
> 
> On Fri, Oct 28, 2005 at 12:48:45PM +0200, Yves-Alexis Perez wrote:
> 
>>as some people now, the fn-key.patch [0] for powerbooks doesnt work with
>>2.6.14 kernels. I've seen some threads here with people trying to
>>correct this patch. Is there any progress ?
> 
> 
> Marc-Christian Petersen sent me a patch for inclusion on my powerbook
> page.  I did not yet find time to try it, but I append it to this email
> so you can have a go.
> 
> As far as I understand it, it disables the new (and not yet supported)
> 2.6.14 mechanism and reenables the old patch instead.  As soon as the
> console keyboard utilities and the X-Server support the new mechanism,
> the patch will probably no longer be necessary.
> 
> I hope this helps,
> Jochen

I just built another (patched) kernel, and it seems that Fn key still
isnt recognized, xev doenst show anything. I'll investigate a bit more

--
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: status of fn-key.patch for 2.6.14

2005-10-28 Thread Yves-Alexis Perez
Yves-Alexis Perez wrote:
> I just built another (patched) kernel, and it seems that Fn key still
> isnt recognized, xev doenst show anything. I'll investigate a bit more

Ok, my mystake. I've edited the patch because gcc doesnt like nested
comments and the compilation aborted, and then I didnt apply the edited
patch...

Now, everything work. Thank you :) You can put the patch on your website
 but don't forget to remove the nested comment.

Regards,

--
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: Powerbook G4 configure some stuff

2005-10-28 Thread Yves-Alexis Perez
Dimitrios Petris wrote:
> Hello!!
> I ve just bought my new powerbook G4 and installed debian linux on it 
> but i seem to have some problems and seek for help.
> Firstly i don't know what type is my trackpad so i can make it work 
> properly, because at this point it doesn't work at all.What can i do  to
> make it work?

Just enable appletouch in a 2.6.14 kernel. (Devices Drivers / USB
Support, Apple USB Touchpad support)

> Secondly i don't know what type of soundcard i have so i cann choose 
> the right parameter in my kernel config.

It is a powermac sound card

> I also cannot make my internal modem work!

The internal modem isnt even detected here...

> And last is there any module to make the function keys for the  monitor
> brigthness and volume control etc to work as they do in MacOSX?

apt-get install pbbuttonsd for the brightness, volume control etc...

For the function key, you need a patch for 2.6.14 kernel which is in the
archives of this list.

There are few website that can help you. Please see:

http://seehuhn.de/comp/powerbook/
http://johannes.sipsolutions.net/PowerBook/

--
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: status of fn-key.patch for 2.6.14

2005-10-29 Thread Yves-Alexis Perez
Benjamin Herrenschmidt wrote:
> Can somebody send me the final/proper patch there ?
> 
> Ben.
> 

Here it is :)
-- 
Yves-Alexis Perez
# 2.6.14-WOLK4.0
#
# original version from: Stelian Pop <[EMAIL PROTECTED]>
# 2.6.14 fix from: Marc-Christian Petersen

diff -puN drivers/usb/input/hid-core.c drivers/usb/input/hid-core.c
--- old/drivers/usb/input/hid-core.c 	2005-10-28  01:23:58.0 -0200
+++ new/drivers/usb/input/hid-core.c	2005-10-28  01:23:58.0 -0200
@@ -1451,6 +1451,9 @@ void hid_init_reports(struct hid_device 
  * Alphabetically sorted blacklist by quirk type.
  */
 
+#define USB_DEVICE_ID_POWERBOOK_KB_US	0x020E
+#define USB_DEVICE_ID_POWERBOOK_KB_UK	0x020F
+
 static struct hid_blacklist {
 	__u16 idVendor;
 	__u16 idProduct;
@@ -1566,6 +1566,9 @@ static struct hid_blacklist {
 	{ USB_VENDOR_ID_SAITEK, USB_DEVICE_ID_SAITEK_RUMBLEPAD, HID_QUIRK_BADPAD },
 	{ USB_VENDOR_ID_TOPMAX, USB_DEVICE_ID_TOPMAX_COBRAPAD, HID_QUIRK_BADPAD },
 
+	{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_POWERBOOK_KB_US, HID_QUIRK_POWERBOOK_FN_BUTTON },
+	{ USB_VENDOR_ID_APPLE, USB_DEVICE_ID_POWERBOOK_KB_UK, HID_QUIRK_POWERBOOK_FN_BUTTON },
+
 	{ 0, 0 }
 };
 
diff -puN drivers/usb/input/hid.h drivers/usb/input/hid.h
--- old/drivers/usb/input/hid.h 	2005-10-28  01:23:58.0 -0200
+++ new/drivers/usb/input/hid.h	2005-10-28  01:23:58.0 -0200
@@ -246,6 +246,7 @@ struct hid_item {
 #define HID_QUIRK_2WHEEL_MOUSE_HACK_5		0x100
 #define HID_QUIRK_2WHEEL_MOUSE_HACK_ON		0x200
 #define HID_QUIRK_2WHEEL_POWERMOUSE		0x400
+#define HID_QUIRK_POWERBOOK_FN_BUTTON		0x800
 
 /*
  * This is the global environment of the parser. This information is
diff -puN drivers/usb/input/hid-input.c drivers/usb/input/hid-input.c
--- old/drivers/usb/input/hid-input.c 	2005-10-28  01:23:58.0 -0200
+++ new/drivers/usb/input/hid-input.c	2005-10-28  01:23:58.0 -0200
@@ -107,6 +107,10 @@ static void hidinput_configure_usage(str
 			} else
 map_key(KEY_UNKNOWN);
 
+			if ((device->quirks & HID_QUIRK_POWERBOOK_FN_BUTTON) &&
+			(hid_keyboard[usage->hid & HID_USAGE] == KEY_RIGHTCTRL))
+map_key(KEY_UNKNOWN);
+
 			break;
 
 		case HID_UP_BUTTON:
@@ -320,15 +320,17 @@ static void hidinput_configure_usage(str
 		case HID_UP_MSVENDOR:
 			goto ignore;
 
-		case HID_UP_CUSTOM: /* Reported on Logitech and Powerbook USB keyboards */
-
-			set_bit(EV_REP, input->evbit);
-			switch(usage->hid & HID_USAGE) {
-case 0x003: map_key_clear(KEY_FN);		break;
-default:goto ignore;
-			}
-			break;
-
+/*	Who has shit who in his head for this? The need for XFree/Xorg to change their
+ *	input drivers? No thanks. (mcp)
+ *		case HID_UP_CUSTOM: Reported on Logitech and Powerbook USB keyboards 
+ *
+ *			set_bit(EV_REP, input->evbit);
+ *			switch(usage->hid & HID_USAGE) {
+ *case 0x003: map_key_clear(KEY_FN);		break;
+ *default:goto ignore;
+ *			}
+ *			break;
+ */
 		case HID_UP_LOGIVENDOR: /* Reported on Logitech Ultra X Media Remote */
 
 			set_bit(EV_REP, input->evbit);
@@ -380,6 +380,10 @@ static void hidinput_configure_usage(str
 
 		default:
 		unknown:
+			if ((device->quirks & HID_QUIRK_POWERBOOK_FN_BUTTON) && (usage->hid == 0x00ff0003)) {
+map_key_clear(KEY_RIGHTCTRL);
+break;
+			}
 			if (field->report_size == 1) {
 if (field->report->type == HID_OUTPUT_REPORT) {
 	map_led(LED_MISC);
_


signature.asc
Description: OpenPGP digital signature


Re: status of fn-key.patch for 2.6.14

2005-10-29 Thread Yves-Alexis Perez
Elimar Riesebieter wrote:
> Hello Jochen,
> 
> On Fri, 28 Oct 2005 the mental interface of
> Jochen Voss told:
> 
> 
>>Hello Yves-Alexis,
> 
> [...]
> 
>>Marc-Christian Petersen sent me a patch for inclusion on my powerbook
>>page.  I did not yet find time to try it, but I append it to this email
>>so you can have a go.
> 
> That patch works, but has some offset chunks by reverting the patch.
> The attached one is for the Debian sources 2.6.14-1 and applies
> without chunks in both directions.
> 
> Elimar

Could this patch be applied against 2.6.14 tree for linux-image-2.6.14-2
? (it's at the moment the only thing which makes me build my own kernels)

-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: status of fn-key.patch for 2.6.14

2005-10-29 Thread Yves-Alexis Perez
Elimar Riesebieter wrote:
> On Sat, 29 Oct 2005 the mental interface of
> Yves-Alexis Perez told:
> 
> [...]
> 
>>Could this patch be applied against 2.6.14 tree for linux-image-2.6.14-2
>>? (it's at the moment the only thing which makes me build my own kernels)
> 
> 
> I don't recognized 2.6.14-2?
> 
> Install
> http://incoming.debian.org/linux-source-2.6.14_2.6.14-1_all.deb
> 
> $ cd /usr/src
> $ tar -xjf linux-source-2.6.14.tar.bz2
> $ cd linux-source-2.6.14
> 
> $ cat \
> /path/to/patch/0141_powerbook-fnkey-working-for-Debian-2.6.14.patch \
> | patch -p1
> 
> $ make-kpkg debian
> $ dch -i
> $ cp /boot/config-running-kernel-version .config
> $ make oldconfig
> $ make-kpkg build && make-kpkg kernel-image (modules_image)
> 
> This works perfect with an updated /etc/kernel-pkg.conf.

Well, I know how to build my kernels, I'm doing that way. I can keep
building it, but if I can spare the build time, why not ?

-- 
Corsac
http://www.corsac.net


signature.asc
Description: OpenPGP digital signature


quake3 under linux/ppc

2005-11-01 Thread Yves-Alexis Perez
Sven Luther wrote:
> altough i was compiling
> quake3.
> 
> Friendly,
> 
> Sven Luther
> 

Did you manage to compile quake3 ? Doest it run fine ?

I built quake3 (from icculus svn), and it works fine, but in software
mode. With opengl acceleration, it produces some funny pictures (see
http://heracles.corsac.net/~corsac/q3ppc/ ). Does it run fine on your box ?


[config]


:00:10.0 VGA compatible controller: ATI Technologies Inc RV350
[Mobility Radeon 9600 M10]

Linux hidalgo 2.6.14 #1 PREEMPT Fri Oct 28 15:44:49 CEST 2005 ppc GNU/Linux

ii  libgl1-mesa-dri 6.3.2-2

X Window System Version 6.8.99.901 (6.9.0 RC 1) (Debian
6.8.99.901.dfsg.1-1 20051022193809 [EMAIL PROTECTED])
-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: mol modules for kernel 2.6.14

2005-11-03 Thread Yves-Alexis Perez
Elimar Riesebieter wrote:
> So build the package withe the provided patch of #328826. There must
> be more "Tiger Users" on the list to test it?

Applied here. Tiger boots fine.

(powerbook 5,6 / tiger 10.4.2 / linux 2.6.14 )


-- Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: mol modules for kernel 2.6.14

2005-11-03 Thread Yves-Alexis Perez
Elimar Riesebieter wrote:
> On Thu, 03 Nov 2005 the mental interface of
> Yves-Alexis Perez told:
> 
> 
>>Elimar Riesebieter wrote:
>>
>>>So build the package withe the provided patch of #328826. There must
>>>be more "Tiger Users" on the list to test it?
>>
>>Applied here. Tiger boots fine.
> 
Well, you wanted users to test, didnt you ?

-- Yves-Alexis Perez



signature.asc
Description: PGP signature


signature.asc
Description: OpenPGP digital signature


Re: 2.6.14 USB vs. sleep issues

2005-11-04 Thread Yves-Alexis Perez
Saladino wrote:
> My problem with compiling is that when doing "cat /dev/input/event0"
> tells that there is no device, although it exists /dev/input/event0.

crw-rw  1 root root 13, 64 2005-11-02 19:07 /dev/input/event0

event0 is only readable by root, have you checked that ?

-- Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: [XFree] keyboard mapping

2005-11-06 Thread Yves-Alexis Perez
(resent to the list)

Thomas Harding wrote:
> Hello,
> I can't figure out how exactly is done keyboard mapping :
> 
> setxkbmap -print gives me "macintosh/us(extended)+macintosh/fr"
> 
> - If I modify /etc/X11/xkb/symbols/macintoch/fr, eg. replacing "sterling"
>   by "bar", it works.
> - If I modify next position, eg replacing by "asciitilde", it doesn't
>   works, and continue to produce a "agrave", or "udiaeresis" with
>   apple+sterling and apple+shift+sterling
> 
>   Notice these two characters are normally not as this position in the
>   config file (correct mapping would be "at" [EMAIL PROTECTED] and 
> "numbersign"
>   --#-- ).
> 
>   It is the same for all exotics characters : mapping doesn't
>   correspond to what is in the config file.
> 
>   If I use xmodmap, this is the same problem : mapping is OK on the
>   first and second positions, not for the nexts.
> 
>   Maybe the apple key is not corresponding to "alt gr"... so where is
>   mapped the apple key  -- while it is not the console mapping?
> 
The key modifiers are Shift, Alt and Shift Alt. No alt gr.

I don't know what box you are running, but, just in case, there are
french, US and DE keymaps for the apple powerbook, here:

http://seehuhn.de/comp/powerbook/#keyboard

They try to imit OSX keymap, but there are some lacks.

-- Yves-Alexis Perez


PS: french osx keymaps
http://www.corsac.net/images/200510/keyboard.jpg
http://www.corsac.net/images/200510/keyboard-shift.jpg
http://www.corsac.net/images/200510/keyboard-alt.jpg
http://www.corsac.net/images/200510/keyboard-altshift.jpg



signature.asc
Description: PGP signature


signature.asc
Description: OpenPGP digital signature


Re: joy. AirPort Extreme

2005-11-08 Thread Yves-Alexis Perez
Johannes Berg wrote:
> Hi,
> 
> Yesterday, the free driver for the first time received data.
> [snip]
> I suppose it'll still be a few weeks until there's a driver that can
> associate. And AP or ad-hoc mode will take much longer yet since we
> still need to figure out what to do there.
> 

Congratulations for the "birth" :)
Great job, and thanks for your work
-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: pbbuttonsd doesn't work with 2.6.15 (git tree)

2005-11-08 Thread Yves-Alexis Perez
Thorsten Johannvorderbrueggen wrote:
> Hello Kasper,
> 
> i have the same problem (pbbuttons-0.7.2 and kernel-2.6.14 wont work)
> and posted it this week on the pbbuttons mailing list (no answer yet). 
> 
Here:
Linux hidalgo 2.6.14 #1 PREEMPT Fri Oct 28 15:44:49 CEST 2005 ppc GNU/Linux

pbbuttonsd, version 0.7.2, (c) 2002-2005 Matthias Grimm

everything works as it should...

-- 
Yves-Alexis Perez


signature.asc
Description: OpenPGP digital signature


Re: pbbuttonsd doesn't work with 2.6.15 (git tree)

2005-11-08 Thread Yves-Alexis Perez
Thorsten Johannvorderbrueggen wrote:
> Hello Yves-Alexis,
> 
> have you a working brightness-controll? 

Yes
If so, can you please send me
> your pbbuttons.confg and your kernel-conf? 

Attached

-- Yves-Alexis Perez
# Configuration file for PBButtonsd >= Version 0.5
# for complete list of options please see pbbuttonsd.conf man-page

# [SYSTEM]
#userallowed   = "paranoid" ; user who is allowed to use IPC
autorescan= yes ; automatic rescan of event devices
CmdTimeout= 4

# [MODULE POWERSAVE]
onAC_policy   = performance ; nochange, performance, custom or 
powersave
onAC_TimerAction  = blankscreen ; none, suspend-to-ram, 
suspend-to-disk, blankscreen
onAC_CoverAction  = suspend-to-ram
onAC_KeyAction= suspend-to-ram  ; SleepKey
onAC_SuspendTime  = 0   ; time in 1/10 seconds
onAC_DimTime  = 0   ; time in 1/10 seconds

onBattery_policy  = custom
onBattery_TimerAction = blankscreen ; none, suspend-to-ram, 
suspend-to-disk, blankscreen
onBattery_CoverAction = suspend-to-ram
onBattery_KeyAction   = suspend-to-ram  ; SleepKey
onBattery_SuspendTime = 0   ; time in 1/10 seconds
onBattery_DimTime = 0   ; time in 1/10 seconds

SleepKey  = 116
#SleepKey  = pmupowerbutton
SleepKeyDelay = 0   ; values > 0 may be dangerous, if the 
power key is used to trigger sleep
BWL_first = 22  ; first battery warnlevel, time in 
minutes
BWL_second= 10  ; second battery warnlevel, time in 
minutes
BWL_last  = 3   ; last battery warnlevel, time in 
minutes
Script_PMCS   = "/etc/power/pmcs-pbbuttonsd %s %s %s"
EmergencyAction   = sleep   ; action, if battery is critically low
HeartbeatBeep = yes ; beep, if nothing else showed that the 
computer lives
CPULoad_sleeplock = yes
CPULoad_min   = 20  ; value in percent
CPULoad_period= 20  ; time in seconds
NETLoad_sleeplock = yes
NETLoad_min   = 4096; traffic in Bytes/s
NETLoad_period= 20  ; time in seconds
NETLoad_device= "eth0"

# [MODULE DISPLAY]
LCD_Brightness= 5   ; initial LCD brightness level
LCD_FadingSpeed   = 5   ; 0 = no smooth fading
LCD_AutoAdjust= no  ; only on Aluminum PowerBooks
LCD_IllumUpKey= 60 + ctrl
LCD_IllumDownKey  = 59 + ctrl
LCD_Threshold = 94
LCD_AutoAdjMin_Bat= 2   ; autoadjust parameter
LCD_AutoAdjMax_Bat= 7
LCD_AutoAdjMin_AC = 1
LCD_AutoAdjMax_AC = 15
#KBD_Brightness= 0  ; initial keyboard illumination level
KBD_OnBrightness  = 5   ; initial level if KBD on/off key is 
pressed
KBD_FadingSpeed   = 5   ; 0 = no smooth fading
KBD_AutoAdjust= yes ; only on Aluminum PowerBooks
KBD_IllumUpKey= 68 + ctrl
KBD_IllumDownKey  = 67 + ctrl
KBD_IllumOnKey= 66 + ctrl
KBD_Threshold = 28  ; only on Aluminum PowerBooks
dev_FrameBuffer   = "/dev/fb0"
UseFBBlank= no
DimFullyDark  = yes
CRT_MirrorKey = 65 + ctrl

# [MODULE MIXER]
SoundSystem   = alsa; none, auto, OSS or ALSA
#Volume= 50 ; initial volume level
Speakers_muted= no  ; mute after startup?
VolumeUpKey   = 63 + ctrl
VolumeDownKey = 62 + ctrl
MuteKey   = 61 + ctrl
OSS_Mixer = "/dev/mixer"; settings for OSS
OSS_Channels  = "volume, speaker"
ALSA_Card = "default"   ; settings for ALSA
ALSA_Elements = "Master, 'PC Speaker'"
MixerInitDelay= no

# [MODULE CDROM]
dev_CDROM = "/dev/cdrom"
EjectCDKey= 161
EjectCDKeyDelay   = 0

# [MODULE PMAC]
dev_PMU   = "/dev/pmu"
dev_ADB   = "/dev/adb"
TPModeUpKey   = 225 + alt
TPModeDownKey = 224 + alt
TPMode= drag
KBDMode   = fkeysfirst
Batlog= none
NoTapTyping   = no
#
# Automatically generated make config: don't edit
# Linux kernel version: 2.6.14
# Fri Oct 28 15:26:12 2005
#
CONFIG_MMU=y
CONFIG_GENERIC_HARDIRQS=y
CONFIG_RWSEM_XCHGADD_ALGORITHM=y
CONFIG_GENERIC_CALIBRATE_DELAY=y
CONFIG_PPC=y
CONFIG_PPC32=y
CONFIG_GENERIC_NVRAM=y
CONFIG_SCHED_NO_NO_OMIT_FRAME_POINTER=y
CONFIG_ARCH_MAY_HAVE_PC_FDC=y

#
# Code maturity level options
#
CONFIG_EXPERIMENTAL=y
CONFIG_CLEAN_COMPILE=y
CONFIG_BROKEN_ON_SMP=y
CONFIG_LOCK_KERNEL=y
CONFIG_INIT_ENV_ARG_LIMIT=32

#
# General setup
#
CONFIG_LOCALVERSION=""
CONFIG_LOCALVERSION_AUTO=y
CONFIG_

  1   2   >