I had trouble getting the image ready from my desktop computer so I have finally been able to install devuan in a new computer to compile the image. I installed devuan, updated the system, installed the needed packages, cloned the script and run it. This is the error I am getting:
CC net/ipv4/xfrm4_state.o
CC drivers/gpu/drm/udl/udl_connector.o
drivers/gpu/drm/udl/udl_connector.c:17:27: fatal error: udl_connector.h: No such file or directory
#include
^
compilation terminated.
scripts/Makefile.build:308: recipe for target 'drivers/gpu/drm/udl/udl_connector.o' failed
make[4]: *** [drivers/gpu/drm/udl/udl_connector.o] Error 1
scripts/Makefile.build:455: recipe for target 'drivers/gpu/drm/udl' failed
make[3]: *** [drivers/gpu/drm/udl] Error 2
scripts/Makefile.build:455: recipe for target 'drivers/gpu/drm' failed
make[2]: *** [drivers/gpu/drm] Error 2
scripts/Makefile.build:455: recipe for target 'drivers/gpu' failed
make[1]: *** [drivers/gpu] Error 2
Makefile:869: recipe for target 'drivers' failed
make: *** [drivers] Error 2
make: *** Waiting for unfinished jobs....
LD net/key/built-in.o
CC [M] net/key/af_key.o
After a bit more and clean up the script exists.
I had trouble getting the image ready from my desktop computer so I have finally been able to install devuan in a new computer to compile the image. I installed devuan, updated the system, installed the needed packages, cloned the script and run it. This is the error I am getting:
CC net/ipv4/xfrm4_state.o
CC drivers/gpu/drm/udl/udl_connector.o
drivers/gpu/drm/udl/udl_connector.c:17:27: fatal error: udl_connector.h: No such file or directory
#include <udl_connector.h>
^
compilation terminated.
scripts/Makefile.build:308: recipe for target 'drivers/gpu/drm/udl/udl_connector.o' failed
make[4]: *** [drivers/gpu/drm/udl/udl_connector.o] Error 1
scripts/Makefile.build:455: recipe for target 'drivers/gpu/drm/udl' failed
make[3]: *** [drivers/gpu/drm/udl] Error 2
scripts/Makefile.build:455: recipe for target 'drivers/gpu/drm' failed
make[2]: *** [drivers/gpu/drm] Error 2
scripts/Makefile.build:455: recipe for target 'drivers/gpu' failed
make[1]: *** [drivers/gpu] Error 2
Makefile:869: recipe for target 'drivers' failed
make: *** [drivers] Error 2
make: *** Waiting for unfinished jobs....
LD net/key/built-in.o
CC [M] net/key/af_key.o
After a bit more and clean up the script exists.
Hello, I had the same problem. In chromeos-3.14/drivers/gpu/drm/udl/udl_connector.c at the beginning of the file you can read
#include <udl_connector.h>
I replaced this with:
#include "udl_connector.h"
and it were able to build the kernel.
Hello, I had the same problem. In chromeos-3.14/drivers/gpu/drm/udl/udl_connector.c at the beginning of the file you can read
#include <udl_connector.h>
I replaced this with:
#include "udl_connector.h"
and it were able to build the kernel.
I had trouble getting the image ready from my desktop computer so I have finally been able to install devuan in a new computer to compile the image. I installed devuan, updated the system, installed the needed packages, cloned the script and run it. This is the error I am getting:
CC net/ipv4/xfrm4_state.o CC drivers/gpu/drm/udl/udl_connector.o drivers/gpu/drm/udl/udl_connector.c:17:27: fatal error: udl_connector.h: No such file or directory #include
compilation terminated. scripts/Makefile.build:308: recipe for target 'drivers/gpu/drm/udl/udl_connector.o' failed make[4]: *** [drivers/gpu/drm/udl/udl_connector.o] Error 1 scripts/Makefile.build:455: recipe for target 'drivers/gpu/drm/udl' failed make[3]: *** [drivers/gpu/drm/udl] Error 2 scripts/Makefile.build:455: recipe for target 'drivers/gpu/drm' failed make[2]: *** [drivers/gpu/drm] Error 2 scripts/Makefile.build:455: recipe for target 'drivers/gpu' failed make[1]: *** [drivers/gpu] Error 2 Makefile:869: recipe for target 'drivers' failed make: *** [drivers] Error 2 make: *** Waiting for unfinished jobs.... LD net/key/built-in.o CC [M] net/key/af_key.o
After a bit more and clean up the script exists.
Hello, I had the same problem. In chromeos-3.14/drivers/gpu/drm/udl/udl_connector.c at the beginning of the file you can read
I replaced this with:
and it were able to build the kernel.