Re: kernel sources.

2008-08-11 Thread Gaudenz Steinlin
On Sun, Aug 10, 2008 at 04:36:15PM +0200, Børge Holen wrote:
 hi, I just recently started using the debian kernel package, 
 my current kernel is 2.6.26-1-powerpc witch is in package 
 linux-image-2.6.26-1-powerpc.
 
 What I try to achieve is to compile the raop_play alsa driver, witch in turn 
 requires the source for the current kernel.
 What package is consistant with each kernel. I tried the linux-source-***  
 packages witch was not the right choice.

You probably need linux-headers-2.6.26-1-powerpc. This contains the
necessary headers to compile external modules.

Gaudenz

-- 
Ever tried. Ever failed. No matter.
Try again. Fail again. Fail better.
~ Samuel Beckett ~


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



Re: kernel sources.

2008-08-11 Thread Børge Holen
On Monday 11 August 2008 10:26:13 Gaudenz Steinlin wrote:
 On Sun, Aug 10, 2008 at 04:36:15PM +0200, Børge Holen wrote:
  hi, I just recently started using the debian kernel package,
  my current kernel is 2.6.26-1-powerpc witch is in package
  linux-image-2.6.26-1-powerpc.
 
  What I try to achieve is to compile the raop_play alsa driver, witch in
  turn requires the source for the current kernel.
  What package is consistant with each kernel. I tried the linux-source-***
  packages witch was not the right choice.

 You probably need linux-headers-2.6.26-1-powerpc. This contains the
 necessary headers to compile external modules.

hrmf, seems kinda obvious ;D.
I'm going to try that this afternoon


 Gaudenz

 --
 Ever tried. Ever failed. No matter.
 Try again. Fail again. Fail better.
 ~ Samuel Beckett ~



-- 
---
Børge Holen
http://www.arivene.net


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



kernel sources.

2008-08-10 Thread Børge Holen
hi, I just recently started using the debian kernel package, 
my current kernel is 2.6.26-1-powerpc witch is in package 
linux-image-2.6.26-1-powerpc.

What I try to achieve is to compile the raop_play alsa driver, witch in turn 
requires the source for the current kernel.
What package is consistant with each kernel. I tried the linux-source-***  
packages witch was not the right choice.
-- 
---
Børge Holen
http://www.arivene.net


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



How to create a Rules.make in the kernel-sources?

2005-08-07 Thread Wolfgang Pfeiffer
Hi

I'm trying to compile a driver module for some 2.6.12 kernel sources:
The compile of this module always quickly stops. As it seems because
of a missing Rules.make file in the top level kernel source directory,
or because if a missing rule to build Rules.make:

:$ time MAKEFLAGS=CC=gcc-4.0 make -C 
/home/shorty/sources.2.6/kernel-org-source/linux-2.6.12/linux-2.6.11 
SUBDIRS=$PWD modules
make: Entering directory 
`/home/shorty/sources.2.6/kernel-org-source/linux-2.6.12/linux-2.6.11'
/home/shorty/downloads/wlan/ralink/RT2500-Linux-STA-1.4.6.2/Module/Makefile:39: 
/home/shorty/sources.2.6/kernel-org-source/linux-2.6.12/linux-2.6.11/Rules.make:
 No such file or directory
scripts/Makefile.build:52: kbuild: 
/home/shorty/downloads/wlan/ralink/RT2500-Linux-STA-1.4.6.2/Module/Makefile - 
Usage of O_TARGET := rt2560_sta.o is obsolete in 2.6. Please fix!
make[1]: *** No rule to make target 
`/home/shorty/sources.2.6/kernel-org-source/linux-2.6.12/linux-2.6.11/Rules.make'.
  Stop.
make: *** 
[_module_/home/shorty/downloads/wlan/ralink/RT2500-Linux-STA-1.4.6.2/Module] 
Error 2
make: Leaving directory
`/home/shorty/sources.2.6/kernel-org-source/linux-2.6.12/linux-2.6.11'


So when building the kernel/Debian kernel-package: Is there a special
flag for either make or make-kpkg that also creates this, as it seems
from above, missing Rules.make

Or - alternatively - does the driver source expect to find some rule
somewhere to build this Rules.make file; a rule that in this case it
does not see .. ?

I'm stumped, and before running around in Google-circles for hours:
Anyone with a sugesstion?

Thanks in anticipation 

Regards
Wolfgang
-- 
Wolfgang Pfeiffer
http://profiles.yahoo.com/wolfgangpfeiffer


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



Re: How to create a Rules.make in the kernel-sources?

2005-08-07 Thread Wolfgang Pfeiffer
On Sun, Aug 07, 2005 at 03:46:43PM +0200, Wolfgang Pfeiffer wrote:
 Hi
 
 I'm trying to compile a driver module for some 2.6.12 kernel sources:
 The compile of this module always quickly stops. As it seems because
 of a missing Rules.make file in the top level kernel source directory,
 or because if a missing rule to build Rules.make:
 
[ ... ]
 
 So when building the kernel/Debian kernel-package: Is there a special
 flag for either make or make-kpkg that also creates this, as it seems
 from above, missing Rules.make
 
 Or - alternatively - does the driver source expect to find some rule
 somewhere to build this Rules.make file; a rule that in this case it
 does not see .. ?

Here's the driver Makefile from the Ralink sources:

---
#
# drivers/net/wireless/rt2560/Makefile
#
# Makefile for the Linux Wireless network device drivers.
#

export RALINK_CFLAGS

RALINK_WFLAGS := -Wall -Wstrict-prototypes -Wno-trigraphs
RALINK_CFLAGS := -g -D__KERNEL__ -I$(LINUX_SRC)/include -O2 
-fomit-frame-pointer -fno-strict-aliasing -fno-common -pipe  $(RALINK_WFLAGS) 
-DBIG_ENDIAN -DLinux


EXTRA_CFLAGS += $(RALINK_CFLAGS)

O_TARGET := rt2560_sta.o

obj-y   :=
obj-m   :=
obj-n   :=
obj-:=

obj-$(CONFIG_RT2560_STA)+= rtmp_main.o \
mlme.o \
connect.o \
sync.o \
assoc.o \
auth.o \
auth_rsp.o \
rtmp_data.o \
rtmp_init.o \
sanity.o \
rtmp_wep.o \
rtmp_info.o \
eeprom.o \
md5.o \
wpa.o \
rtmp_tkip.o

include $(TOPDIR)/Rules.make

__

So as the last line suggests the build's looking for $(TOPDIR)/Rules.make


Best Regards
Wolfgang

-- 
Wolfgang Pfeiffer
http://profiles.yahoo.com/wolfgangpfeiffer


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



Alsa Kernel Sources

2004-01-09 Thread Elimar Riesebieter
Hi out there,

can someone tell me where to request the alsa-101.patch, which can
be found in Andrew Mortons kernel tree at 
http://www.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/\
2.6.1-mm1/broken-out/alsa-101.patch
to the newest ben tree?

Ciao

Elimar

-- 
  It's a good thing we don't get all 
  the government we pay for.


signature.asc
Description: Digital signature


Re: Alsa Kernel Sources

2004-01-09 Thread Kiko Piris
On 10/01/2004 at 00:57, Elimar Riesebieter wrote:

 can someone tell me where to request the alsa-101.patch, which can
 be found in Andrew Mortons kernel tree at 
 http://www.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/\
 2.6.1-mm1/broken-out/alsa-101.patch
 to the newest ben tree?

Apply it yourself. It aplies with _one_ single hunk (of one line, btw)
on 2.6.1-rc1-ben1.

-- 
Kiko

Please do not reply to the sender address of this email; due to spam and
Windows (TM) worms, everything not comming from the list is stored in
/dev/null. Put menorqui in the user part to send me anything.  Although,
I prefer replies sent to the list so that others can benefit from the
discussion.  Thanks.



Re: Alsa Kernel Sources

2004-01-09 Thread Elimar Riesebieter
On Sat, 10 Jan 2004 the mental interface of 
Kiko Piris told:

 On 10/01/2004 at 00:57, Elimar Riesebieter wrote:
 
  can someone tell me where to request the alsa-101.patch, which can
  be found in Andrew Mortons kernel tree at 
  http://www.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/\
  2.6.1-mm1/broken-out/alsa-101.patch
  to the newest ben tree?
 
 Apply it yourself. It aplies with _one_ single hunk (of one line, btw)
 on 2.6.1-rc1-ben1.

Of course that's easy. But alsa is official released within the
kernel sources. Actual 1.0.1 is released from the alsa people. So
why not provide it for everyone? Not every sound app supports 
alsa 1.0. But there are patches available for apps such as mplayer
and libao. It'll take a short time for alsa to be the standard sound
interface in linux. 

The Debian-Alsa Psychos [EMAIL PROTECTED], who are
maintining the alsa packages, have to follow up with the packages of
alsa-utils etc. It is of course easy to build my own debs, but why
not for every one?

Ciao

Elimar


-- 
  Experience is something you don't get until 
  just after you need it!


signature.asc
Description: Digital signature


Re: 2.5 kernel sources?

2003-06-23 Thread Matt Price
On Sat, Jun 21, 2003 at 12:19:56PM +0200, Michel Dänzer wrote:
 On Fri, 2003-06-20 at 23:30, Matt Price wrote:
  
  anyone know of a kernel source branch of 2.5 that currently compiles
  and mostly runs on powerpc?  I'm trying to figure out whether the
  newest ieee sources will work with my bw, but can't get the
  linuxppc-2.5 sources (I rsync'ed them from source.mvista.com) to
  compile for me.
 
 linuxppc-2.5 is the PPC 2.5 tree, I doubt you'll find anything better.
 It usually built fine for me when I tried a while ago, maybe you need to
 tweak your configuration a bit or fix some minor bugs. Post problems to
 [EMAIL PROTECTED] .

thanks michael-- since fixing some minor bugs is beyond me (argh),
I'll try again in a bit.  DOes itm atter much which version of gcc I
compile with?  thanks,

matt

 
 
 -- 
 Earthling Michel Dänzer   \  Debian (powerpc), XFree86 and DRI developer
 Software libre enthusiast  \ http://svcs.affero.net/rm.php?r=daenzer



Re: 2.5 kernel sources?

2003-06-21 Thread Michel Dänzer
On Fri, 2003-06-20 at 23:30, Matt Price wrote:
 
 anyone know of a kernel source branch of 2.5 that currently compiles
 and mostly runs on powerpc?  I'm trying to figure out whether the
 newest ieee sources will work with my bw, but can't get the
 linuxppc-2.5 sources (I rsync'ed them from source.mvista.com) to
 compile for me.

linuxppc-2.5 is the PPC 2.5 tree, I doubt you'll find anything better.
It usually built fine for me when I tried a while ago, maybe you need to
tweak your configuration a bit or fix some minor bugs. Post problems to
[EMAIL PROTECTED] .


-- 
Earthling Michel Dänzer   \  Debian (powerpc), XFree86 and DRI developer
Software libre enthusiast  \ http://svcs.affero.net/rm.php?r=daenzer



2.5 kernel sources?

2003-06-20 Thread Matt Price
hi there,

anyone know of a kernel source branch of 2.5 that currently compiles
and mostly runs on powerpc?  I'm trying to figure out whether the
newest ieee sources will work with my bw, but can't get the
linuxppc-2.5 sources (I rsync'ed them from source.mvista.com) to
compile for me.

thanks,

matt



Could you add this patch to your kernel sources?

2003-05-07 Thread Carlos Perelló Marín
http://www.ardistech.com/hfsplus/

This way we could help easily to debug it and improve it, and also we
will be able to use the Mac iPod with Linux :-D

Cheers.

-- 
Carlos Perelló Marín
Debian GNU/Linux Sid (PowerPC)
Linux Registered User #121232
mailto:[EMAIL PROTECTED] || mailto:[EMAIL PROTECTED]
http://carlos.pemas.net
Valencia - Spain


signature.asc
Description: Esta parte del mensaje =?ISO-8859-1?Q?est=E1?= firmada	digitalmente


Re: Thanks Ibook - kernel sources

2001-07-21 Thread Andrei Verovski
Thaks for all.
I' ve just start with yaboot , I only change one line in my yaboot.conf
partition=4
and run mkofboot
then I run ybin and OK.I can boot without cd.
More Problems:
I want to complile one kernel for the ibook, it's necesary one
patch?.I've compile much kernels for i386,but never for ppc.Is the same
???
I usually do: make dep  make clean  make bzimage  make modules 
make modules_install
then I usually make bzdisk for probe the new kernel, but I have not
floppy in the Ibook
Can I do bzlilo?
Other:
Which kernel is stable for ppc ?

Hi,

Try to use SuSE PPC 2.4.2 or 2.4.6 kernel branches, they come with 
support for ReiserFS and JFS. 2.4.2 works just great, I see no reasons to 
stick with 2.2.x anymore. See my web site (Linux Tips and Tricks) for 
more details.






*   Best Regards   ---   Andrei Verovski   *
*   e-mail ---   [EMAIL PROTECTED]   *
*  *
*   Personal Home Page *
*   http://homepage.mac.com/macgurutemple/ *
*   Mac, Linux, DTP, Development, IT WEB Site  *