make modules_install doesn't work if the ALSA korg1212 sound module is built -
"grep -h .ko" will find /korg1212.o (. is a regexp character...), and
therefore try to install the nonexistant korg1212.ko.
It should be grep -h '\.ko'
kernel/wait.c fails to compile with gcc 3.4 due to discrepancies between the
prototype and implementations of __wait_on_bit() and __wait_on_bit_lock()
Fixes to both are attached.
LLaP
bero
Bernhard Rosenkraenzer <[email protected]> wrote:
>
> make modules_install doesn't work if the ALSA korg1212 sound module is built -
> "grep -h .ko" will find /korg1212.o (. is a regexp character...), and
> therefore try to install the nonexistant korg1212.ko.
> It should be grep -h '\.ko'
Yup. This should be fixed in -mm3, thanks.
> kernel/wait.c fails to compile with gcc 3.4 due to discrepancies between the
> prototype and implementations of __wait_on_bit() and __wait_on_bit_lock()
This also.