* 2.6.21-rc4-mm1 + 3 hot-fixes -- init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
@ 2007-03-20 13:52 Miles Lane
2007-03-20 14:17 ` Stéphane Jourdois
0 siblings, 1 reply; 4+ messages in thread
From: Miles Lane @ 2007-03-20 13:52 UTC (permalink / raw)
To: LKML, Andrew Morton
Hello,
I don't see any announcement for 2.6.21-rc4-mm1 on LKML, but I went
ahead and tried it out. I hit the following, even after running
mrproper.
init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
make: *** [.tmp_vmlinux1] Error 2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: 2.6.21-rc4-mm1 + 3 hot-fixes -- init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
2007-03-20 13:52 2.6.21-rc4-mm1 + 3 hot-fixes -- init/.missing_syscalls.h.cmd:2: *** missing separator. Stop Miles Lane
@ 2007-03-20 14:17 ` Stéphane Jourdois
2007-03-20 14:29 ` Miles Lane
0 siblings, 1 reply; 4+ messages in thread
From: Stéphane Jourdois @ 2007-03-20 14:17 UTC (permalink / raw)
To: Miles Lane; +Cc: LKML
Miles Lane a écrit :
> Hello,
>
> I don't see any announcement for 2.6.21-rc4-mm1 on LKML, but I went
> ahead and tried it out. I hit the following, even after running
> mrproper.
>
> init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
> make: *** [.tmp_vmlinux1] Error 2
Would you please try the following patch ?
http://lkml.org/lkml/2007/3/20/79
Thanks.
- Stéphane.
--
/// Stephane Jourdois /"\ ASCII RIBBON CAMPAIGN \\\
((( Consultant securite \ / AGAINST HTML MAIL )))
\\\ 24 rue Cauchy X ///
\\\ 75015 Paris / \ +33 6 8643 3085 ///
--
/// Stephane Jourdois /"\ ASCII RIBBON CAMPAIGN \\\
((( Consultant securite \ / AGAINST HTML MAIL )))
\\\ 24 rue Cauchy X ///
\\\ 75015 Paris / \ +33 6 8643 3085 ///
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: 2.6.21-rc4-mm1 + 3 hot-fixes -- init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
2007-03-20 14:17 ` Stéphane Jourdois
@ 2007-03-20 14:29 ` Miles Lane
2007-03-20 14:40 ` Stéphane Jourdois
0 siblings, 1 reply; 4+ messages in thread
From: Miles Lane @ 2007-03-20 14:29 UTC (permalink / raw)
To: Stéphane Jourdois; +Cc: LKML
On 3/20/07, Stéphane Jourdois <kwisatz@rubis.org> wrote:
> Miles Lane a écrit :
> > Hello,
> >
> > I don't see any announcement for 2.6.21-rc4-mm1 on LKML, but I went
> > ahead and tried it out. I hit the following, even after running
> > mrproper.
> >
> > init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
> > make: *** [.tmp_vmlinux1] Error 2
>
> Would you please try the following patch ?
>
> http://lkml.org/lkml/2007/3/20/79
I tried your patch. After applying it, the error still occurred, so
then I performed the other stepa you mentioned:
rm init/missing_syscalls.h
make init
I was then able to continue the build successfully.
Hopefully, I'd not need to run the additional steps again. Otherwise,
the patch needs a little more work.
Thanks,
Miles
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: 2.6.21-rc4-mm1 + 3 hot-fixes -- init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
2007-03-20 14:29 ` Miles Lane
@ 2007-03-20 14:40 ` Stéphane Jourdois
0 siblings, 0 replies; 4+ messages in thread
From: Stéphane Jourdois @ 2007-03-20 14:40 UTC (permalink / raw)
To: Miles Lane; +Cc: LKML
Miles Lane a écrit :
> On 3/20/07, Stéphane Jourdois <kwisatz@rubis.org> wrote:
>> Miles Lane a écrit :
>> > Hello,
>> >
>> > I don't see any announcement for 2.6.21-rc4-mm1 on LKML, but I went
>> > ahead and tried it out. I hit the following, even after running
>> > mrproper.
>> >
>> > init/.missing_syscalls.h.cmd:2: *** missing separator. Stop.
>> > make: *** [.tmp_vmlinux1] Error 2
>>
>> Would you please try the following patch ?
>>
>> http://lkml.org/lkml/2007/3/20/79
>
> I tried your patch. After applying it, the error still occurred, so
> then I performed the other stepa you mentioned:
> rm init/missing_syscalls.h
Of course, you have to first delete the corrupted file with this command:
rm init/.missing_syscalls.h.cmd
The command :
rm init/missing_syscalls.h
works only once, and you have to redo it at each compile.
> make init
This one is not necessary.
> I was then able to continue the build successfully.
>
> Hopefully, I'd not need to run the additional steps again. Otherwise,
> the patch needs a little more work.
unlink the good file (init/.missing_syscalls.h.cmd), not the .h file,
and you won't need to redo it again :-)
I admit I should have said that earlier ;-)
The fact that whole init/ is not compiled again when init/Makefile is
perhaps a bug, but it is unrelated to this bug/patch.
Thanks.
--
/// Stephane Jourdois /"\ ASCII RIBBON CAMPAIGN \\\
((( Consultant securite \ / AGAINST HTML MAIL )))
\\\ 24 rue Cauchy X ///
\\\ 75015 Paris / \ +33 6 8643 3085 ///
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-03-20 14:40 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-03-20 13:52 2.6.21-rc4-mm1 + 3 hot-fixes -- init/.missing_syscalls.h.cmd:2: *** missing separator. Stop Miles Lane
2007-03-20 14:17 ` Stéphane Jourdois
2007-03-20 14:29 ` Miles Lane
2007-03-20 14:40 ` Stéphane Jourdois
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox