2004-03-15 19:37:05

by Rick Knight

[permalink] [raw]
Subject: How to apply -mm patch?

I've looked everywhere but can't find any instruction on how to apply
the -mm patches. I've tried "patch -p0 < 2.6.4-mm" and this seems to run
without error, but the resulting source won't build. Can someone give me
a quick example of how to apply the 2.6.4-mm patch to linux-2.6.4?

In answering this message, please CC me.

Thanks,
Rick Knight
([email protected])


2004-03-15 19:56:16

by Norberto Bensa

[permalink] [raw]
Subject: Re: How to apply -mm patch?

Richard W. Knight wrote:
> Can someone give me
> a quick example of how to apply the 2.6.4-mm patch to linux-2.6.4?

Assuming your vanilla kernel is on /usr/src/linux, then:

# cd /usr/src/linux
# bzcat /path/to/mm-patch.bz2 | patch -p1

Regards,
Norberto

2004-03-16 00:30:43

by Rick Knight

[permalink] [raw]
Subject: Re: How to apply -mm patch?

Julien Didron wrote:

> Hello,
>
> Instructions can be found in the Readme file included in the sources
> basically you should cd /usr/src/linux-2.6.4
> then cat ../2.6.4-mm | patch -p1 (2.6.4-mm being uncompressed in
> /usr/src, of course)
> I had an issue with that patch, you should also patch the Makefile
> in /usr/src/linux-2.6.4 with this
> line 990 to 995 should be replaced with that chunk (without
> including the numbers) : 990 $(cmd_$(1)); \
> 991 scripts/basic/fixdep $(depfile) $@ '$(subst \
> 992 $$,$$$$,$(subst ','\
> 993 '',$(cmd_$(1))))' > $(@D)/.$(@F).tmp; \
> 994 rm -f $(depfile); \
> 995 mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd)
>
> cheers
>
> Julien
>
> Richard W. Knight wrote:
>
>> I've looked everywhere but can't find any instruction on how to apply
>> the -mm patches. I've tried "patch -p0 < 2.6.4-mm" and this seems to
>> run without error, but the resulting source won't build. Can someone
>> give me a quick example of how to apply the 2.6.4-mm patch to
>> linux-2.6.4?
>>
>> In answering this message, please CC me.
>>
>> Thanks,
>> Rick Knight
>> ([email protected])
>>
>> -
>> To unsubscribe from this list: send the line "unsubscribe
>> linux-kernel" in
>> the body of a message to [email protected]
>> More majordomo info at http://vger.kernel.org/majordomo-info.html
>> Please read the FAQ at http://www.tux.org/lkml/
>>
>>
Thanks Julien and Norberto,

That worked.

Rick Knight
([email protected])