All of lore.kernel.org
 help / color / mirror / Atom feed
* build failure after merge of the staging tree
@ 2021-07-30 13:53 Mark Brown
  2021-07-30 14:02 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2021-07-30 13:53 UTC (permalink / raw)
  To: Greg KH
  Cc: Linux Kernel Mailing List, Linux Next Mailing List, Phillip Potter

Hi all,

After merging the staging tree, today's linux-next build (x86
allmodconfig) failed like this:

/tmp/next/build/drivers/staging/r8188eu/core/rtw_ap.c:22:10: fatal error: osdep_service.h: No such file or directory
 #include <osdep_service.h>
          ^~~~~~~~~~~~~~~~~
compilation terminated.
make[4]: *** [/tmp/next/build/scripts/Makefile.build:271: drivers/staging/r8188eu/core/rtw_ap.o] Error 1
make[4]: *** Waiting for unfinished jobs....
/tmp/next/build/drivers/staging/r8188eu/core/rtw_br_ext.c:29:10: fatal error: drv_types.h: No such file or directory
 #include <drv_types.h>
          ^~~~~~~~~~~~~
compilation terminated.

Caused by commit

  15865124feed880978b7 ("staging: r8188eu: introduce new core dir for RTL8188eu driver")

I've used the staging tree from yesterday instead.

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

* Re: build failure after merge of the staging tree
  2021-07-30 13:53 build failure after merge of the staging tree Mark Brown
@ 2021-07-30 14:02 ` Greg KH
  2021-07-30 14:04   ` Mark Brown
  0 siblings, 1 reply; 6+ messages in thread
From: Greg KH @ 2021-07-30 14:02 UTC (permalink / raw)
  To: Mark Brown
  Cc: Linux Kernel Mailing List, Linux Next Mailing List, Phillip Potter

On Fri, Jul 30, 2021 at 02:53:40PM +0100, Mark Brown wrote:
> Hi all,
> 
> After merging the staging tree, today's linux-next build (x86
> allmodconfig) failed like this:
> 
> /tmp/next/build/drivers/staging/r8188eu/core/rtw_ap.c:22:10: fatal error: osdep_service.h: No such file or directory
>  #include <osdep_service.h>
>           ^~~~~~~~~~~~~~~~~
> compilation terminated.
> make[4]: *** [/tmp/next/build/scripts/Makefile.build:271: drivers/staging/r8188eu/core/rtw_ap.o] Error 1
> make[4]: *** Waiting for unfinished jobs....
> /tmp/next/build/drivers/staging/r8188eu/core/rtw_br_ext.c:29:10: fatal error: drv_types.h: No such file or directory
>  #include <drv_types.h>
>           ^~~~~~~~~~~~~
> compilation terminated.
> 
> Caused by commit
> 
>   15865124feed880978b7 ("staging: r8188eu: introduce new core dir for RTL8188eu driver")
> 
> I've used the staging tree from yesterday instead.

Ah, are you building with O= ?  That might be the problem here, I think
I had to fix up that mess with the older driver in the past...

thanks,

greg k-h

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

* Re: build failure after merge of the staging tree
  2021-07-30 14:02 ` Greg KH
@ 2021-07-30 14:04   ` Mark Brown
  2021-07-30 14:15     ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2021-07-30 14:04 UTC (permalink / raw)
  To: Greg KH
  Cc: Linux Kernel Mailing List, Linux Next Mailing List, Phillip Potter

[-- Attachment #1: Type: text/plain, Size: 285 bytes --]

On Fri, Jul 30, 2021 at 04:02:41PM +0200, Greg KH wrote:

> Ah, are you building with O= ?  That might be the problem here, I think
> I had to fix up that mess with the older driver in the past...

Yes, all the -next integration builds use O= to keep the working trees
between builds.

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* Re: build failure after merge of the staging tree
  2021-07-30 14:04   ` Mark Brown
@ 2021-07-30 14:15     ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2021-07-30 14:15 UTC (permalink / raw)
  To: Mark Brown
  Cc: Linux Kernel Mailing List, Linux Next Mailing List, Phillip Potter

On Fri, Jul 30, 2021 at 03:04:54PM +0100, Mark Brown wrote:
> On Fri, Jul 30, 2021 at 04:02:41PM +0200, Greg KH wrote:
> 
> > Ah, are you building with O= ?  That might be the problem here, I think
> > I had to fix up that mess with the older driver in the past...
> 
> Yes, all the -next integration builds use O= to keep the working trees
> between builds.

Yup, just tested this locally, that's the issue.  Let me make a patch
series to fix this, thanks for the report...

greg k-h

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

* Re: build failure after merge of the staging tree
  2021-07-30 13:52 Mark Brown
@ 2021-07-30 14:00 ` Greg KH
  0 siblings, 0 replies; 6+ messages in thread
From: Greg KH @ 2021-07-30 14:00 UTC (permalink / raw)
  To: Mark Brown; +Cc: Linux Kernel Mailing List, Linux Next Mailing List

On Fri, Jul 30, 2021 at 02:52:19PM +0100, Mark Brown wrote:
> Hi all,
> 
> After merging the staging tree, today's linux-next build (x86
> allmodconfig) failed like this:
> 
> /tmp/next/build/drivers/staging/r8188eu/core/rtw_ap.c:22:10: fatal error: osdep_service.h: No such file or directory
>  #include <osdep_service.h>
>           ^~~~~~~~~~~~~~~~~
> compilation terminated.
> make[4]: *** [/tmp/next/build/scripts/Makefile.build:271: drivers/staging/r8188eu/core/rtw_ap.o] Error 1
> make[4]: *** Waiting for unfinished jobs....
> /tmp/next/build/drivers/staging/r8188eu/core/rtw_br_ext.c:29:10: fatal error: drv_types.h: No such file or directory
>  #include <drv_types.h>
>           ^~~~~~~~~~~~~
> compilation terminated.
> 
> Caused by commit
> 
>   15865124feed880978b7 ("staging: r8188eu: introduce new core dir for RTL8188eu driver")
> 
> I've used the staging tree from yesterday instead.

Very odd, why is this not hitting it in my builds?  Let me dig...

greg k-h

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

* build failure after merge of the staging tree
@ 2021-07-30 13:52 Mark Brown
  2021-07-30 14:00 ` Greg KH
  0 siblings, 1 reply; 6+ messages in thread
From: Mark Brown @ 2021-07-30 13:52 UTC (permalink / raw)
  To: Greg KH; +Cc: Linux Kernel Mailing List, Linux Next Mailing List

Hi all,

After merging the staging tree, today's linux-next build (x86
allmodconfig) failed like this:

/tmp/next/build/drivers/staging/r8188eu/core/rtw_ap.c:22:10: fatal error: osdep_service.h: No such file or directory
 #include <osdep_service.h>
          ^~~~~~~~~~~~~~~~~
compilation terminated.
make[4]: *** [/tmp/next/build/scripts/Makefile.build:271: drivers/staging/r8188eu/core/rtw_ap.o] Error 1
make[4]: *** Waiting for unfinished jobs....
/tmp/next/build/drivers/staging/r8188eu/core/rtw_br_ext.c:29:10: fatal error: drv_types.h: No such file or directory
 #include <drv_types.h>
          ^~~~~~~~~~~~~
compilation terminated.

Caused by commit

  15865124feed880978b7 ("staging: r8188eu: introduce new core dir for RTL8188eu driver")

I've used the staging tree from yesterday instead.

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

end of thread, other threads:[~2021-07-30 14:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-30 13:53 build failure after merge of the staging tree Mark Brown
2021-07-30 14:02 ` Greg KH
2021-07-30 14:04   ` Mark Brown
2021-07-30 14:15     ` Greg KH
  -- strict thread matches above, loose matches on Subject: below --
2021-07-30 13:52 Mark Brown
2021-07-30 14:00 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.