public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [TRIVIAL][PATCH] include/linux/Kbuild devfs fix
@ 2006-07-04 20:23 Michal Piotrowski
  2006-07-04 21:44 ` Greg KH
  2006-07-05 10:29 ` Krzysztof Halasa
  0 siblings, 2 replies; 4+ messages in thread
From: Michal Piotrowski @ 2006-07-04 20:23 UTC (permalink / raw)
  To: Linus Torvalds, Greg KH, David Woodhouse, LKML

Hi,

I get this error while "make O=/dir headers_install"

sed: can't read /usr/src/linux-git/include/linux/devfs_fs.h: No such file or directory
make[3]: *** [devfs_fs.h] Error 2
make[2]: *** [linux] Error 2
make[1]: *** [headers_install] Error 2
make: *** [headers_install] Error 2

Here is a patch

Regards,
Michal

--
Michal K. K. Piotrowski
LTG - Linux Testers Group
(http://www.stardust.webpages.pl/ltg/wiki/)

Signed-off-by: Michal Piotrowski <michal.k.k.piotrowski@gmail.com>

--- linux-git/include/linux/Kbuild2	2006-07-04 22:04:28.000000000 +0200
+++ linux-git/include/linux/Kbuild	2006-07-04 22:13:44.000000000 +0200
@@ -8,7 +8,7 @@ header-y += affs_fs.h affs_hardblocks.h
 	atmppp.h atmsap.h atmsvc.h atm_zatm.h auto_fs4.h auxvec.h	\
 	awe_voice.h ax25.h b1lli.h baycom.h bfs_fs.h blkpg.h		\
 	bpqether.h cdk.h chio.h coda_psdev.h coff.h comstats.h		\
-	consolemap.h cycx_cfm.h devfs_fs.h dm-ioctl.h dn.h dqblk_v1.h	\
+	consolemap.h cycx_cfm.h dm-ioctl.h dn.h dqblk_v1.h	\
 	dqblk_v2.h dqblk_xfs.h efs_fs_sb.h elf-fdpic.h elf.h elf-em.h	\
 	fadvise.h fd.h fdreg.h ftape-header-segment.h ftape-vendors.h	\
 	fuse.h futex.h genetlink.h gen_stats.h gigaset_dev.h hdsmart.h	\

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [TRIVIAL][PATCH] include/linux/Kbuild devfs fix
  2006-07-04 20:23 [TRIVIAL][PATCH] include/linux/Kbuild devfs fix Michal Piotrowski
@ 2006-07-04 21:44 ` Greg KH
  2006-07-04 22:18   ` Michal Piotrowski
  2006-07-05 10:29 ` Krzysztof Halasa
  1 sibling, 1 reply; 4+ messages in thread
From: Greg KH @ 2006-07-04 21:44 UTC (permalink / raw)
  To: Michal Piotrowski; +Cc: Linus Torvalds, David Woodhouse, LKML

On Tue, Jul 04, 2006 at 10:23:12PM +0200, Michal Piotrowski wrote:
> Hi,
> 
> I get this error while "make O=/dir headers_install"
> 
> sed: can't read /usr/src/linux-git/include/linux/devfs_fs.h: No such file or directory
> make[3]: *** [devfs_fs.h] Error 2
> make[2]: *** [linux] Error 2
> make[1]: *** [headers_install] Error 2
> make: *** [headers_install] Error 2
> 
> Here is a patch

Linus already caught this :)

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [TRIVIAL][PATCH] include/linux/Kbuild devfs fix
  2006-07-04 21:44 ` Greg KH
@ 2006-07-04 22:18   ` Michal Piotrowski
  0 siblings, 0 replies; 4+ messages in thread
From: Michal Piotrowski @ 2006-07-04 22:18 UTC (permalink / raw)
  To: Greg KH; +Cc: Linus Torvalds, David Woodhouse, LKML

On 04/07/06, Greg KH <gregkh@suse.de> wrote:
> On Tue, Jul 04, 2006 at 10:23:12PM +0200, Michal Piotrowski wrote:
> > Hi,
> >
> > I get this error while "make O=/dir headers_install"
> >
> > sed: can't read /usr/src/linux-git/include/linux/devfs_fs.h: No such file or directory
> > make[3]: *** [devfs_fs.h] Error 2
> > make[2]: *** [linux] Error 2
> > make[1]: *** [headers_install] Error 2
> > make: *** [headers_install] Error 2
> >
> > Here is a patch
>
> Linus already caught this :)

Thanks Linus!

Regards,
Michal

-- 
Michal K. K. Piotrowski
LTG - Linux Testers Group
(http://www.stardust.webpages.pl/ltg/wiki/)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [TRIVIAL][PATCH] include/linux/Kbuild devfs fix
  2006-07-04 20:23 [TRIVIAL][PATCH] include/linux/Kbuild devfs fix Michal Piotrowski
  2006-07-04 21:44 ` Greg KH
@ 2006-07-05 10:29 ` Krzysztof Halasa
  1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Halasa @ 2006-07-05 10:29 UTC (permalink / raw)
  To: Michal Piotrowski; +Cc: Linus Torvalds, Greg KH, David Woodhouse, LKML

Michal Piotrowski <michal.k.k.piotrowski@gmail.com> writes:

> sed: can't read /usr/src/linux-git/include/linux/devfs_fs.h: No such file or directory

Too good to be true :-)
-- 
Krzysztof Halasa

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2006-07-05 10:29 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-07-04 20:23 [TRIVIAL][PATCH] include/linux/Kbuild devfs fix Michal Piotrowski
2006-07-04 21:44 ` Greg KH
2006-07-04 22:18   ` Michal Piotrowski
2006-07-05 10:29 ` Krzysztof Halasa

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox