OESF Portables Forum
Model Specific Forums => Gemini PDA => Gemini PDA - Linux => Topic started by: galodoido on June 06, 2018, 11:57:49 am
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
you just need gcc installed and the full kernel source. you only need aarch64-linux-gnu gcc if compiling on a different platform e.g. x64
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
you just need gcc installed and the full kernel source. you only need aarch64-linux-gnu gcc if compiling on a different platform e.g. x64
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
you just need gcc installed and the full kernel source. you only need aarch64-linux-gnu gcc if compiling on a different platform e.g. x64
I have all the needed files to compile including gcc.
But the kernel source provided ( as described above ) when compiling, asks for aarch64-linux-gnu gcc.
This is the problem.
Thank you again.
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
you just need gcc installed and the full kernel source. you only need aarch64-linux-gnu gcc if compiling on a different platform e.g. x64
I have all the needed files to compile including gcc.
But the kernel source provided ( as described above ) when compiling, asks for aarch64-linux-gnu gcc.
This is the problem.
Thank you again.
And aarch64-linux-gnu gcc doens't work on arm64 plattaform.
I think the tree is not complete and Makefile , Kbuild or other files make reference to aarch64-linux-gnu gcc.
Thank you again.
-
And aarch64-linux-gnu gcc doens't work on arm64 plattaform.
I think the tree is not complete and Makefile , Kbuild or other files make reference to aarch64-linux-gnu gcc.
Thank you again.
That is because it is configured to be built on a different platform from the Gemini, for speed as much as anything else. You only need aarch64-linux-gnu toolchain if you are cross compiling (e.g compiling on a different architecture like your desktop PC), seeing as you are compiling on native hardware you need to remove references to that toolchain and just use gcc.
-
And aarch64-linux-gnu gcc doens't work on arm64 plattaform.
I think the tree is not complete and Makefile , Kbuild or other files make reference to aarch64-linux-gnu gcc.
Thank you again.
That is because it is configured to be built on a different platform from the Gemini, for speed as much as anything else. You only need aarch64-linux-gnu toolchain if you are cross compiling (e.g compiling on a different architecture like your desktop PC), seeing as you are compiling on native hardware you need to remove references to that toolchain and just use gcc.
Ok.
Problem is really to remove these references.
In what files they are and if the kernel tree is also complete ( I am doubt about this ).
When I have a time I will try to investigate those files.
Maybe the kernel administrator already have this kernel tree with correct references for the arm64 platafform
Thank you again.
-
And aarch64-linux-gnu gcc doens't work on arm64 plattaform.
I think the tree is not complete and Makefile , Kbuild or other files make reference to aarch64-linux-gnu gcc.
Thank you again.
That is because it is configured to be built on a different platform from the Gemini, for speed as much as anything else. You only need aarch64-linux-gnu toolchain if you are cross compiling (e.g compiling on a different architecture like your desktop PC), seeing as you are compiling on native hardware you need to remove references to that toolchain and just use gcc.
Ok.
Problem is really to remove these references.
In what files they are and if the kernel tree is also complete ( I am doubt about this ).
When I have a time I will try to investigate those files.
Maybe the kernel administrator already have this kernel tree with correct references for the arm64 platafform
Thank you again.
Only to inform :
I needed linux headers to compile video4linux.
Maybe the camera could work with video4linux.
But after I copied the tree of KERNEL_OUT ( after it was compiled in my macbook air with dual boot mac and linux ) to the gemini, I decided to run :"make modules" to build the modules . I supposed after the compilation, things would be better, but I saw that this kernel was compiled without modules support ( for some reason ).
I hope the new kernel provided is compiled with modules support and with all kernel headers available .
-
Only to inform :
I needed linux headers to compile video4linux.
Maybe the camera could work with video4linux.
But after I copied the tree of KERNEL_OUT ( after it was compiled in my powerbook with dual boot mac and linux ) to the gemini, I decided to run :"make modules" to build the modules . I supposed after the compilation, things would be better, but I saw that this kernel was compiled without modules support ( for some reason ).
I hope the new kernel provided is compiled with modules support and with all kernel headers available .
If you make menuconfig you will see that the gcc prefix is specified there. You can edit the config file and search for the prefix (without gcc) and you can remove it.
-
Only to inform :
I needed linux headers to compile video4linux.
Maybe the camera could work with video4linux.
But after I copied the tree of KERNEL_OUT ( after it was compiled in my powerbook with dual boot mac and linux ) to the gemini, I decided to run :"make modules" to build the modules . I supposed after the compilation, things would be better, but I saw that this kernel was compiled without modules support ( for some reason ).
I hope the new kernel provided is compiled with modules support and with all kernel headers available .
If you make menuconfig you will see that the gcc prefix is specified there. You can edit the config file and search for the prefix (without gcc) and you can remove it.
Thank you .
Unfortunately inside gemini is not possible to run make menuconfig. The display is too small and an alert says that is not possible to run it.
But I've tried cross-compiling from my macbook with linux and if I change aeon6797_6m_n_halium_defconfig ( that generates a .config file ) the kernel does not compile. A number of errors are displayed. I've changed only to enable module support ( in menuconfig ). I think if .config file is different from aeon6797_6m_n_halium_defconfig ( even a little bit difference ) prevents from compiling the kernel.
-
Only to inform :
I needed linux headers to compile video4linux.
Maybe the camera could work with video4linux.
But after I copied the tree of KERNEL_OUT ( after it was compiled in my powerbook with dual boot mac and linux ) to the gemini, I decided to run :"make modules" to build the modules . I supposed after the compilation, things would be better, but I saw that this kernel was compiled without modules support ( for some reason ).
I hope the new kernel provided is compiled with modules support and with all kernel headers available .
If you make menuconfig you will see that the gcc prefix is specified there. You can edit the config file and search for the prefix (without gcc) and you can remove it.
Thank you .
Unfortunately inside gemini is not possible to run make menuconfig. The display is too small and an alert says that is not possible to run it.
But I've tried cross-compiling from my macbook with linux and if I change aeon6797_6m_n_halium_defconfig ( that generates a .config file ) the kernel does not compile. A number of errors are displayed. I've changed only to enable module support ( in menuconfig ). I think if .config file is different from aeon6797_6m_n_halium_defconfig ( even a little bit difference ) prevents from compiling the kernel.
Enabling module support is quite a big change. I would compare configurations before and after. It is possible that it then builds some of the other parts which were built in before as modules. You must make sure that none of the parts required before mounting disks (and therefore being able to load modules) are built as modules otherwise you would need to update the initial ramdisk with your modules.
I have a relatively giant screen on my Gemini in Termux under android if I want using screen pinch gestures to change the font size. On this reply box in Chrome I have 18 lines of text with plenty of room above and below. There are enough pixels to clearly display this because it is a 1080p display. I am not using Gemini to compile kernels because the machine is precious to me and without adequate cooling, I worry about prolonged heat from full cpu use and battery cycles or constant charging. I have an ODroid C2 I could try this on for you at the weekend however. As an Armv8 machine, it is similar enough to test a kernel compile.
-
Only to inform :
I needed linux headers to compile video4linux.
Maybe the camera could work with video4linux.
But after I copied the tree of KERNEL_OUT ( after it was compiled in my powerbook with dual boot mac and linux ) to the gemini, I decided to run :"make modules" to build the modules . I supposed after the compilation, things would be better, but I saw that this kernel was compiled without modules support ( for some reason ).
I hope the new kernel provided is compiled with modules support and with all kernel headers available .
If you make menuconfig you will see that the gcc prefix is specified there. You can edit the config file and search for the prefix (without gcc) and you can remove it.
Thank you .
Unfortunately inside gemini is not possible to run make menuconfig. The display is too small and an alert says that is not possible to run it.
But I've tried cross-compiling from my macbook with linux and if I change aeon6797_6m_n_halium_defconfig ( that generates a .config file ) the kernel does not compile. A number of errors are displayed. I've changed only to enable module support ( in menuconfig ). I think if .config file is different from aeon6797_6m_n_halium_defconfig ( even a little bit difference ) prevents from compiling the kernel.
Enabling module support is quite a big change. I would compare configurations before and after. It is possible that it then builds some of the other parts which were built in before as modules. You must make sure that none of the parts required before mounting disks (and therefore being able to load modules) are built as modules otherwise you would need to update the initial ramdisk with your modules.
I have a relatively giant screen on my Gemini in Termux under android if I want using screen pinch gestures to change the font size. On this reply box in Chrome I have 18 lines of text with plenty of room above and below. There are enough pixels to clearly display this because it is a 1080p display. I am not using Gemini to compile kernels because the machine is precious to me and without adequate cooling, I worry about prolonged heat from full cpu use and battery cycles or constant charging. I have an ODroid C2 I could try this on for you at the weekend however. As an Armv8 machine, it is similar enough to test a kernel compile.
Ok . Thank you.
I reduced the size of terminal ( fonts ) and I was able to do make menuconfig. But using the same (.config ) and compiling with internal gcc ( as suggested by Beiriannydd ) and enabling only kernel module support , I can't compile the kernel. Some errors at the end.
-
Ok . Thank you.
I reduced the size of terminal ( fonts ) and I was able to do make menuconfig. But using the same (.config ) and compiling with internal gcc ( as suggested by Beiriannydd ) and enabling only kernel module support , I can't compile the kernel. Some errors at the end.
You will have to paste the errors or we can't help you. There could be any number of issues.
-
Ok . Thank you.
I reduced the size of terminal ( fonts ) and I was able to do make menuconfig. But using the same (.config ) and compiling with internal gcc ( as suggested by Beiriannydd ) and enabling only kernel module support , I can't compile the kernel. Some errors at the end.
You will have to paste the errors or we can't help you. There could be any number of issues.
I decided to compile in my macbook. It is fast. But the error is the same.
First I have to create a dir named tools in /kernel-3.18/tools
An error saying that dir tools does not exist. So the dir after the creation is /kernel-3.18/tools/tools.
Then the compilation starts and finished without notice of errors.
But scrolling the compilation I saw this error :
CC sound/usb/proc.o
In file included from drivers/misc/mediatek/base/power/mt6797/mt_eem.c:1036:0:
drivers/misc/mediatek/base/power/mt6797/../../../include/mt-plat/mt6797/include/mach/mt_thermal.h:27:24: fatal error: mt_gpufreq.h: No such file or directory
#include "mt_gpufreq.h"
^
compilation terminated.
scripts/Makefile.build:257: recipe for target 'drivers/misc/mediatek/base/power/mt6797/mt_eem.o' failed
make[6]: *** [drivers/misc/mediatek/base/power/mt6797/mt_eem.o] Error 1
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power/mt6797' failed
make[5]: *** [drivers/misc/mediatek/base/power/mt6797] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power' failed
make[4]: *** [drivers/misc/mediatek/base/power] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base' failed
make[3]: *** [drivers/misc/mediatek/base] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek' failed
make[2]: *** [drivers/misc/mediatek] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc' failed
make[1]: *** [drivers/misc] Error 2
Makefile:939: recipe for target 'drivers' failed
make: *** [drivers] Error 2
make: *** Waiting for unfinished jobs....
CC sound/usb/quirks.o
CC net/ipv6/af_inet6.o
Interesting is the .config file is the same I use when compiling following this instructions below; The difference is that I am compiling inside the tree kernel-3.18 and not to a KERNEL_OUT dir.
https://www.oesf.org/forum/index.php?act=Po...amp;qpid=286798 (https://www.oesf.org/forum/index.php?act=Post&CODE=02&f=194&t=35098&qpid=286798)
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 aeon6797_6m_n_halium_defconfig
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 CROSS_COMPILE=../aarch64-linux-android-4.9/bin/aarch64-linux-android- -j8
Thank you again
-
Ok . Thank you.
I reduced the size of terminal ( fonts ) and I was able to do make menuconfig. But using the same (.config ) and compiling with internal gcc ( as suggested by Beiriannydd ) and enabling only kernel module support , I can't compile the kernel. Some errors at the end.
You will have to paste the errors or we can't help you. There could be any number of issues.
I decided to compile in my macbook. It is fast. But the error is the same.
First I have to create a dir named tools in /kernel-3.18/tools
An error saying that dir tools does not exist. So the dir after the creation is /kernel-3.18/tools/tools.
Then the compilation starts and finished without notice of errors.
But scrolling the compilation I saw this error :
CC sound/usb/proc.o
In file included from drivers/misc/mediatek/base/power/mt6797/mt_eem.c:1036:0:
drivers/misc/mediatek/base/power/mt6797/../../../include/mt-plat/mt6797/include/mach/mt_thermal.h:27:24: fatal error: mt_gpufreq.h: No such file or directory
#include "mt_gpufreq.h"
^
compilation terminated.
scripts/Makefile.build:257: recipe for target 'drivers/misc/mediatek/base/power/mt6797/mt_eem.o' failed
make[6]: *** [drivers/misc/mediatek/base/power/mt6797/mt_eem.o] Error 1
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power/mt6797' failed
make[5]: *** [drivers/misc/mediatek/base/power/mt6797] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power' failed
make[4]: *** [drivers/misc/mediatek/base/power] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base' failed
make[3]: *** [drivers/misc/mediatek/base] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek' failed
make[2]: *** [drivers/misc/mediatek] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc' failed
make[1]: *** [drivers/misc] Error 2
Makefile:939: recipe for target 'drivers' failed
make: *** [drivers] Error 2
make: *** Waiting for unfinished jobs....
CC sound/usb/quirks.o
CC net/ipv6/af_inet6.o
Interesting is the .config file is the same I use when compiling following this instructions below; The difference is that I am compiling inside the tree kernel-3.18 and not to a KERNEL_OUT dir.
https://www.oesf.org/forum/index.php?act=Po...amp;qpid=286798 (https://www.oesf.org/forum/index.php?act=Post&CODE=02&f=194&t=35098&qpid=286798)
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 aeon6797_6m_n_halium_defconfig
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 CROSS_COMPILE=../aarch64-linux-android-4.9/bin/aarch64-linux-android- -j8
Thank you again
compiled only the modules with success ( make modules ).
but when sudo modprobe " some module " an error : could not insert "some module " . Exec format error.
thank you.
-
Ok . Thank you.
I reduced the size of terminal ( fonts ) and I was able to do make menuconfig. But using the same (.config ) and compiling with internal gcc ( as suggested by Beiriannydd ) and enabling only kernel module support , I can't compile the kernel. Some errors at the end.
You will have to paste the errors or we can't help you. There could be any number of issues.
I decided to compile in my macbook. It is fast. But the error is the same.
First I have to create a dir named tools in /kernel-3.18/tools
An error saying that dir tools does not exist. So the dir after the creation is /kernel-3.18/tools/tools.
Then the compilation starts and finished without notice of errors.
But scrolling the compilation I saw this error :
CC sound/usb/proc.o
In file included from drivers/misc/mediatek/base/power/mt6797/mt_eem.c:1036:0:
drivers/misc/mediatek/base/power/mt6797/../../../include/mt-plat/mt6797/include/mach/mt_thermal.h:27:24: fatal error: mt_gpufreq.h: No such file or directory
#include "mt_gpufreq.h"
^
compilation terminated.
scripts/Makefile.build:257: recipe for target 'drivers/misc/mediatek/base/power/mt6797/mt_eem.o' failed
make[6]: *** [drivers/misc/mediatek/base/power/mt6797/mt_eem.o] Error 1
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power/mt6797' failed
make[5]: *** [drivers/misc/mediatek/base/power/mt6797] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power' failed
make[4]: *** [drivers/misc/mediatek/base/power] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base' failed
make[3]: *** [drivers/misc/mediatek/base] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek' failed
make[2]: *** [drivers/misc/mediatek] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc' failed
make[1]: *** [drivers/misc] Error 2
Makefile:939: recipe for target 'drivers' failed
make: *** [drivers] Error 2
make: *** Waiting for unfinished jobs....
CC sound/usb/quirks.o
CC net/ipv6/af_inet6.o
Interesting is the .config file is the same I use when compiling following this instructions below; The difference is that I am compiling inside the tree kernel-3.18 and not to a KERNEL_OUT dir.
https://www.oesf.org/forum/index.php?act=Po...amp;qpid=286798 (https://www.oesf.org/forum/index.php?act=Post&CODE=02&f=194&t=35098&qpid=286798)
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 aeon6797_6m_n_halium_defconfig
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 CROSS_COMPILE=../aarch64-linux-android-4.9/bin/aarch64-linux-android- -j8
Thank you again
compiled only the modules with success ( make modules ).
but when sudo modprobe " some module " an error : could not insert "some module " . Exec format error.
thank you.
Re-compiled kernel with only modules support in my macbook . Reflashed gemini.
modprobe my dibcom module ( digital usb tv ) and it worked like a charm.
Video in youtube with my gemini and vlc playing local tv network ( GLOBO TV ).
will upload it in youtube and post link here in a few hours .
-
Ok . Thank you.
I reduced the size of terminal ( fonts ) and I was able to do make menuconfig. But using the same (.config ) and compiling with internal gcc ( as suggested by Beiriannydd ) and enabling only kernel module support , I can't compile the kernel. Some errors at the end.
You will have to paste the errors or we can't help you. There could be any number of issues.
I decided to compile in my macbook. It is fast. But the error is the same.
First I have to create a dir named tools in /kernel-3.18/tools
An error saying that dir tools does not exist. So the dir after the creation is /kernel-3.18/tools/tools.
Then the compilation starts and finished without notice of errors.
But scrolling the compilation I saw this error :
CC sound/usb/proc.o
In file included from drivers/misc/mediatek/base/power/mt6797/mt_eem.c:1036:0:
drivers/misc/mediatek/base/power/mt6797/../../../include/mt-plat/mt6797/include/mach/mt_thermal.h:27:24: fatal error: mt_gpufreq.h: No such file or directory
#include "mt_gpufreq.h"
^
compilation terminated.
scripts/Makefile.build:257: recipe for target 'drivers/misc/mediatek/base/power/mt6797/mt_eem.o' failed
make[6]: *** [drivers/misc/mediatek/base/power/mt6797/mt_eem.o] Error 1
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power/mt6797' failed
make[5]: *** [drivers/misc/mediatek/base/power/mt6797] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base/power' failed
make[4]: *** [drivers/misc/mediatek/base/power] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek/base' failed
make[3]: *** [drivers/misc/mediatek/base] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc/mediatek' failed
make[2]: *** [drivers/misc/mediatek] Error 2
scripts/Makefile.build:402: recipe for target 'drivers/misc' failed
make[1]: *** [drivers/misc] Error 2
Makefile:939: recipe for target 'drivers' failed
make: *** [drivers] Error 2
make: *** Waiting for unfinished jobs....
CC sound/usb/quirks.o
CC net/ipv6/af_inet6.o
Interesting is the .config file is the same I use when compiling following this instructions below; The difference is that I am compiling inside the tree kernel-3.18 and not to a KERNEL_OUT dir.
https://www.oesf.org/forum/index.php?act=Po...amp;qpid=286798 (https://www.oesf.org/forum/index.php?act=Post&CODE=02&f=194&t=35098&qpid=286798)
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 aeon6797_6m_n_halium_defconfig
$ make O=../KERNEL_OUT -C kernel-3.18 ARCH=arm64 CROSS_COMPILE=../aarch64-linux-android-4.9/bin/aarch64-linux-android- -j8
Thank you again
compiled only the modules with success ( make modules ).
but when sudo modprobe " some module " an error : could not insert "some module " . Exec format error.
thank you.
Re-compiled kernel with only modules support in my macbook . Reflashed gemini.
modprobe my dibcom module ( digital usb tv ) and it worked like a charm.
Video in youtube with my gemini and vlc playing local tv network ( GLOBO TV ).
will upload it in youtube and post link here in a few hours .
Here is the link:
https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be (https://www.youtube.com/watch?v=6ohN_9FOLRA&feature=youtu.be)
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
Wall was already in the KBUILD_CFLAGS
Changed only kernel-3.18 to kernel_3.18 to,preserve my previous kernel modules already compiled as described before.
Unfortunately following your instructions no success . see below:
LD drivers/mmc/built-in.o
CC fs/compat_ioctl.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'drivers' failed
make[1]: *** [drivers] Error 2
CC fs/binfmt_script.o
CC net/ipv4/sysctl_net_ipv4.o
CC fs/binfmt_elf.o
CC net/ipv4/sysfs_net_ipv4.o
CC net/ipv4/proc.o
CC fs/compat_binfmt_elf.o
CC fs/mbcache.o
CC net/ipv4/fib_rules.o
CC net/ipv4/ipmr.o
CC fs/posix_acl.o
CC net/ipv4/ipip.o
CC net/ipv4/syncookies.o
CC net/ipv4/ah4.o
CC net/ipv4/esp4.o
CC net/ipv4/ipcomp.o
CC net/ipv4/xfrm4_tunnel.o
CC net/ipv4/xfrm4_mode_beet.o
CC fs/coredump.o
CC net/ipv4/tunnel4.o
CC net/ipv4/xfrm4_mode_transport.o
CC net/ipv4/xfrm4_mode_tunnel.o
CC fs/drop_caches.o
CC net/ipv4/ipconfig.o
CC fs/fhandle.o
CC fs/dcookies.o
CC net/ipv4/netfilter.o
CC net/ipv4/inet_diag.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.o
CC net/ipv4/netfilter/nf_conntrack_proto_icmp.o
CC net/ipv4/netfilter/nf_nat_l3proto_ipv4.o
LD fs/built-in.o
CC net/ipv4/netfilter/nf_nat_proto_icmp.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC net/ipv4/tcp_diag.o
CC net/ipv4/udp_diag.o
CC net/ipv4/tcp_cubic.o
CC net/ipv4/netfilter/nf_log_ipv4.o
CC net/ipv4/xfrm4_policy.o
CC net/ipv4/xfrm4_state.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC net/ipv4/xfrm4_input.o
CC net/ipv4/netfilter/nf_nat_pptp.o
CC net/ipv4/netfilter/nf_nat_masquerade_ipv4.o
CC net/ipv4/xfrm4_output.o
CC net/ipv4/netfilter/nf_nat_proto_gre.o
CC net/ipv4/xfrm4_protocol.o
CC net/ipv4/netfilter/ip_tables.o
CC net/ipv4/netfilter/iptable_filter.o
CC net/ipv4/netfilter/iptable_mangle.o
CC net/ipv4/netfilter/iptable_nat.o
CC net/ipv4/netfilter/iptable_raw.o
CC net/ipv4/netfilter/ipt_MASQUERADE.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC net/ipv4/netfilter/arp_tables.o
LD net/ipv4/netfilter/nf_conntrack_ipv4.o
LD net/ipv4/netfilter/nf_nat_ipv4.o
LD net/ipv4/netfilter/built-in.o
LD net/ipv4/built-in.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'net' failed
make[1]: *** [net] Error 2
make[1]: Leaving directory '/home/gemini/KERNEL_OUT'
Makefile:145: recipe for target 'sub-make' failed
make: *** [sub-make] Error 2
make: Leaving directory '/home/gemini/kernel_3.18'
gemini@localhost:~$
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
Wall was already in the KBUILD_CFLAGS
Changed only kernel-3.18 to kernel_3.18 to,preserve my previous kernel modules already compiled as described before.
Unfortunately following your instructions no success . see below:
LD drivers/mmc/built-in.o
CC fs/compat_ioctl.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'drivers' failed
make[1]: *** [drivers] Error 2
CC fs/binfmt_script.o
CC net/ipv4/sysctl_net_ipv4.o
CC fs/binfmt_elf.o
CC net/ipv4/sysfs_net_ipv4.o
CC net/ipv4/proc.o
CC fs/compat_binfmt_elf.o
CC fs/mbcache.o
CC net/ipv4/fib_rules.o
CC net/ipv4/ipmr.o
CC fs/posix_acl.o
CC net/ipv4/ipip.o
CC net/ipv4/syncookies.o
CC net/ipv4/ah4.o
CC net/ipv4/esp4.o
CC net/ipv4/ipcomp.o
CC net/ipv4/xfrm4_tunnel.o
CC net/ipv4/xfrm4_mode_beet.o
CC fs/coredump.o
CC net/ipv4/tunnel4.o
CC net/ipv4/xfrm4_mode_transport.o
CC net/ipv4/xfrm4_mode_tunnel.o
CC fs/drop_caches.o
CC net/ipv4/ipconfig.o
CC fs/fhandle.o
CC fs/dcookies.o
CC net/ipv4/netfilter.o
CC net/ipv4/inet_diag.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.o
CC net/ipv4/netfilter/nf_conntrack_proto_icmp.o
CC net/ipv4/netfilter/nf_nat_l3proto_ipv4.o
LD fs/built-in.o
CC net/ipv4/netfilter/nf_nat_proto_icmp.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC net/ipv4/tcp_diag.o
CC net/ipv4/udp_diag.o
CC net/ipv4/tcp_cubic.o
CC net/ipv4/netfilter/nf_log_ipv4.o
CC net/ipv4/xfrm4_policy.o
CC net/ipv4/xfrm4_state.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC net/ipv4/xfrm4_input.o
CC net/ipv4/netfilter/nf_nat_pptp.o
CC net/ipv4/netfilter/nf_nat_masquerade_ipv4.o
CC net/ipv4/xfrm4_output.o
CC net/ipv4/netfilter/nf_nat_proto_gre.o
CC net/ipv4/xfrm4_protocol.o
CC net/ipv4/netfilter/ip_tables.o
CC net/ipv4/netfilter/iptable_filter.o
CC net/ipv4/netfilter/iptable_mangle.o
CC net/ipv4/netfilter/iptable_nat.o
CC net/ipv4/netfilter/iptable_raw.o
CC net/ipv4/netfilter/ipt_MASQUERADE.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC net/ipv4/netfilter/arp_tables.o
LD net/ipv4/netfilter/nf_conntrack_ipv4.o
LD net/ipv4/netfilter/nf_nat_ipv4.o
LD net/ipv4/netfilter/built-in.o
LD net/ipv4/built-in.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'net' failed
make[1]: *** [net] Error 2
make[1]: Leaving directory '/home/gemini/KERNEL_OUT'
Makefile:145: recipe for target 'sub-make' failed
make: *** [sub-make] Error 2
make: Leaving directory '/home/gemini/kernel_3.18'
gemini@localhost:~$
as I said below to work ( includind modules )
Re-compiled kernel with only modules support in my macbook . Reflashed gemini whit this kernel .
compiled only the modules inside gemini with success ( make modules ).
modprobe my dibcom module ( digital usb tv ) and it worked like a charm.
Video in youtube with my gemini and vlc playing local tv network ( GLOBO TV ).
Here is the link:
https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be (https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be)
-
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all[/quote]
I'm keen on compiling the kernel headers so I can install the displaylink driver for HDMI out. Following the instructions, I've managed to compile the kernel on the Gemini PDA, but all the scripts I've tried for generating the debian package for the kernel headers fail. Does anyone have a suggestion how one can do that?
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
Hi @jthenley I tried compiling the kernel following the instructions suggested and hit the same error that @galodoido hit, what did you do to work around this? I also tried on my Mac but hit even more errors. I'd like to add a few kernel options so I can run docker on my new gemini
Thanks.
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
Wall was already in the KBUILD_CFLAGS
Changed only kernel-3.18 to kernel_3.18 to,preserve my previous kernel modules already compiled as described before.
Unfortunately following your instructions no success . see below:
LD drivers/mmc/built-in.o
CC fs/compat_ioctl.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'drivers' failed
make[1]: *** [drivers] Error 2
CC fs/binfmt_script.o
CC net/ipv4/sysctl_net_ipv4.o
CC fs/binfmt_elf.o
CC net/ipv4/sysfs_net_ipv4.o
CC net/ipv4/proc.o
CC fs/compat_binfmt_elf.o
CC fs/mbcache.o
CC net/ipv4/fib_rules.o
CC net/ipv4/ipmr.o
CC fs/posix_acl.o
CC net/ipv4/ipip.o
CC net/ipv4/syncookies.o
CC net/ipv4/ah4.o
CC net/ipv4/esp4.o
CC net/ipv4/ipcomp.o
CC net/ipv4/xfrm4_tunnel.o
CC net/ipv4/xfrm4_mode_beet.o
CC fs/coredump.o
CC net/ipv4/tunnel4.o
CC net/ipv4/xfrm4_mode_transport.o
CC net/ipv4/xfrm4_mode_tunnel.o
CC fs/drop_caches.o
CC net/ipv4/ipconfig.o
CC fs/fhandle.o
CC fs/dcookies.o
CC net/ipv4/netfilter.o
CC net/ipv4/inet_diag.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.o
CC net/ipv4/netfilter/nf_conntrack_proto_icmp.o
CC net/ipv4/netfilter/nf_nat_l3proto_ipv4.o
LD fs/built-in.o
CC net/ipv4/netfilter/nf_nat_proto_icmp.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC net/ipv4/tcp_diag.o
CC net/ipv4/udp_diag.o
CC net/ipv4/tcp_cubic.o
CC net/ipv4/netfilter/nf_log_ipv4.o
CC net/ipv4/xfrm4_policy.o
CC net/ipv4/xfrm4_state.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC net/ipv4/xfrm4_input.o
CC net/ipv4/netfilter/nf_nat_pptp.o
CC net/ipv4/netfilter/nf_nat_masquerade_ipv4.o
CC net/ipv4/xfrm4_output.o
CC net/ipv4/netfilter/nf_nat_proto_gre.o
CC net/ipv4/xfrm4_protocol.o
CC net/ipv4/netfilter/ip_tables.o
CC net/ipv4/netfilter/iptable_filter.o
CC net/ipv4/netfilter/iptable_mangle.o
CC net/ipv4/netfilter/iptable_nat.o
CC net/ipv4/netfilter/iptable_raw.o
CC net/ipv4/netfilter/ipt_MASQUERADE.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC net/ipv4/netfilter/arp_tables.o
LD net/ipv4/netfilter/nf_conntrack_ipv4.o
LD net/ipv4/netfilter/nf_nat_ipv4.o
LD net/ipv4/netfilter/built-in.o
LD net/ipv4/built-in.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'net' failed
make[1]: *** [net] Error 2
make[1]: Leaving directory '/home/gemini/KERNEL_OUT'
Makefile:145: recipe for target 'sub-make' failed
make: *** [sub-make] Error 2
make: Leaving directory '/home/gemini/kernel_3.18'
gemini@localhost:~$
as I said below to work ( includind modules )
Re-compiled kernel with only modules support in my macbook . Reflashed gemini whit this kernel .
compiled only the modules inside gemini with success ( make modules ).
modprobe my dibcom module ( digital usb tv ) and it worked like a charm.
Video in youtube with my gemini and vlc playing local tv network ( GLOBO TV ).
Here is the link:
https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be (https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be)
@galodoido what libraries and headers did you add to your Mac to cross compile? I tried to compile on my Mac but got an error about a missing elf.h header? I was following the instructions to cross-compile from the "How to build" article.
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
Wall was already in the KBUILD_CFLAGS
Changed only kernel-3.18 to kernel_3.18 to,preserve my previous kernel modules already compiled as described before.
Unfortunately following your instructions no success . see below:
LD drivers/mmc/built-in.o
CC fs/compat_ioctl.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'drivers' failed
make[1]: *** [drivers] Error 2
CC fs/binfmt_script.o
CC net/ipv4/sysctl_net_ipv4.o
CC fs/binfmt_elf.o
CC net/ipv4/sysfs_net_ipv4.o
CC net/ipv4/proc.o
CC fs/compat_binfmt_elf.o
CC fs/mbcache.o
CC net/ipv4/fib_rules.o
CC net/ipv4/ipmr.o
CC fs/posix_acl.o
CC net/ipv4/ipip.o
CC net/ipv4/syncookies.o
CC net/ipv4/ah4.o
CC net/ipv4/esp4.o
CC net/ipv4/ipcomp.o
CC net/ipv4/xfrm4_tunnel.o
CC net/ipv4/xfrm4_mode_beet.o
CC fs/coredump.o
CC net/ipv4/tunnel4.o
CC net/ipv4/xfrm4_mode_transport.o
CC net/ipv4/xfrm4_mode_tunnel.o
CC fs/drop_caches.o
CC net/ipv4/ipconfig.o
CC fs/fhandle.o
CC fs/dcookies.o
CC net/ipv4/netfilter.o
CC net/ipv4/inet_diag.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.o
CC net/ipv4/netfilter/nf_conntrack_proto_icmp.o
CC net/ipv4/netfilter/nf_nat_l3proto_ipv4.o
LD fs/built-in.o
CC net/ipv4/netfilter/nf_nat_proto_icmp.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC net/ipv4/tcp_diag.o
CC net/ipv4/udp_diag.o
CC net/ipv4/tcp_cubic.o
CC net/ipv4/netfilter/nf_log_ipv4.o
CC net/ipv4/xfrm4_policy.o
CC net/ipv4/xfrm4_state.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC net/ipv4/xfrm4_input.o
CC net/ipv4/netfilter/nf_nat_pptp.o
CC net/ipv4/netfilter/nf_nat_masquerade_ipv4.o
CC net/ipv4/xfrm4_output.o
CC net/ipv4/netfilter/nf_nat_proto_gre.o
CC net/ipv4/xfrm4_protocol.o
CC net/ipv4/netfilter/ip_tables.o
CC net/ipv4/netfilter/iptable_filter.o
CC net/ipv4/netfilter/iptable_mangle.o
CC net/ipv4/netfilter/iptable_nat.o
CC net/ipv4/netfilter/iptable_raw.o
CC net/ipv4/netfilter/ipt_MASQUERADE.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC net/ipv4/netfilter/arp_tables.o
LD net/ipv4/netfilter/nf_conntrack_ipv4.o
LD net/ipv4/netfilter/nf_nat_ipv4.o
LD net/ipv4/netfilter/built-in.o
LD net/ipv4/built-in.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'net' failed
make[1]: *** [net] Error 2
make[1]: Leaving directory '/home/gemini/KERNEL_OUT'
Makefile:145: recipe for target 'sub-make' failed
make: *** [sub-make] Error 2
make: Leaving directory '/home/gemini/kernel_3.18'
gemini@localhost:~$
as I said below to work ( includind modules )
Re-compiled kernel with only modules support in my macbook . Reflashed gemini whit this kernel .
compiled only the modules inside gemini with success ( make modules ).
modprobe my dibcom module ( digital usb tv ) and it worked like a charm.
Video in youtube with my gemini and vlc playing local tv network ( GLOBO TV ).
Here is the link:
https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be (https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be)
@galodoido what libraries and headers did you add to your Mac to cross compile? I tried to compile on my Mac but got an error about a missing elf.h header? I was following the instructions to cross-compile from the "How to build" article.
Sorry , only saw your message today : there is a lot of messages in this forum :
My macbook air has dual boot : mac and linux. ( debian stretch ), as I mentioned before in this topic.
-
Hi.
I've tried to compile the kernel as described in another post .
For the community modified kernel:
https://github.com/gemian/gemini-linux-kernel-3.18 (https://github.com/gemian/gemini-linux-kernel-3.18)
How to build:
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-a...rnelCompilation)
How to flash (from device):
https://github.com/gemian/gemini-keyboard-a...date-the-kernel (https://github.com/gemian/gemini-keyboard-a...date-the-kernel)
But I've tried inside gemini.
Unfortunately, it is not possible inside gemini.
Only outside,from an external pc with linux ( with success )
I think it was because aarch64-linux-gnu gcc will not run on arm64 plattaform.
Is there a way to compile inside gemini ?
I need linux headers to compile video4linux.
Maybe the camera will work with video4linux.
Maybe there is kernel with files to compile directly inside the gemini ( Makefile and a full tree of files ).
Thank you all
Yes you can. I've updated instructions for how to build on gemini :-)
https://github.com/gemian/gemini-keyboard-a...rnelCompilation (https://github.com/gemian/gemini-keyboard-apps/wiki/KernelCompilation)
You can see it here (I have to borrow my wife's facebook account to engage with the Facebook community!
https://m.facebook.com/groups/1774620199505...842036069430767 (https://m.facebook.com/groups/1774620199505688?view=permalink&id=1842036069430767)
Wall was already in the KBUILD_CFLAGS
Changed only kernel-3.18 to kernel_3.18 to,preserve my previous kernel modules already compiled as described before.
Unfortunately following your instructions no success . see below:
LD drivers/mmc/built-in.o
CC fs/compat_ioctl.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'drivers' failed
make[1]: *** [drivers] Error 2
CC fs/binfmt_script.o
CC net/ipv4/sysctl_net_ipv4.o
CC fs/binfmt_elf.o
CC net/ipv4/sysfs_net_ipv4.o
CC net/ipv4/proc.o
CC fs/compat_binfmt_elf.o
CC fs/mbcache.o
CC net/ipv4/fib_rules.o
CC net/ipv4/ipmr.o
CC fs/posix_acl.o
CC net/ipv4/ipip.o
CC net/ipv4/syncookies.o
CC net/ipv4/ah4.o
CC net/ipv4/esp4.o
CC net/ipv4/ipcomp.o
CC net/ipv4/xfrm4_tunnel.o
CC net/ipv4/xfrm4_mode_beet.o
CC fs/coredump.o
CC net/ipv4/tunnel4.o
CC net/ipv4/xfrm4_mode_transport.o
CC net/ipv4/xfrm4_mode_tunnel.o
CC fs/drop_caches.o
CC net/ipv4/ipconfig.o
CC fs/fhandle.o
CC fs/dcookies.o
CC net/ipv4/netfilter.o
CC net/ipv4/inet_diag.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4_compat.o
CC net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.o
CC net/ipv4/netfilter/nf_conntrack_proto_icmp.o
CC net/ipv4/netfilter/nf_nat_l3proto_ipv4.o
LD fs/built-in.o
CC net/ipv4/netfilter/nf_nat_proto_icmp.o
CC net/ipv4/netfilter/nf_defrag_ipv4.o
CC net/ipv4/tcp_diag.o
CC net/ipv4/udp_diag.o
CC net/ipv4/tcp_cubic.o
CC net/ipv4/netfilter/nf_log_ipv4.o
CC net/ipv4/xfrm4_policy.o
CC net/ipv4/xfrm4_state.o
CC net/ipv4/netfilter/nf_reject_ipv4.o
CC net/ipv4/xfrm4_input.o
CC net/ipv4/netfilter/nf_nat_pptp.o
CC net/ipv4/netfilter/nf_nat_masquerade_ipv4.o
CC net/ipv4/xfrm4_output.o
CC net/ipv4/netfilter/nf_nat_proto_gre.o
CC net/ipv4/xfrm4_protocol.o
CC net/ipv4/netfilter/ip_tables.o
CC net/ipv4/netfilter/iptable_filter.o
CC net/ipv4/netfilter/iptable_mangle.o
CC net/ipv4/netfilter/iptable_nat.o
CC net/ipv4/netfilter/iptable_raw.o
CC net/ipv4/netfilter/ipt_MASQUERADE.o
CC net/ipv4/netfilter/ipt_REJECT.o
CC net/ipv4/netfilter/arp_tables.o
LD net/ipv4/netfilter/nf_conntrack_ipv4.o
LD net/ipv4/netfilter/nf_nat_ipv4.o
LD net/ipv4/netfilter/built-in.o
LD net/ipv4/built-in.o
/home/gemini/kernel_3.18/Makefile:939: recipe for target 'net' failed
make[1]: *** [net] Error 2
make[1]: Leaving directory '/home/gemini/KERNEL_OUT'
Makefile:145: recipe for target 'sub-make' failed
make: *** [sub-make] Error 2
make: Leaving directory '/home/gemini/kernel_3.18'
gemini@localhost:~$
as I said below to work ( includind modules )
Re-compiled kernel with only modules support in my macbook . Reflashed gemini whit this kernel .
compiled only the modules inside gemini with success ( make modules ).
modprobe my dibcom module ( digital usb tv ) and it worked like a charm.
Video in youtube with my gemini and vlc playing local tv network ( GLOBO TV ).
Here is the link:
https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be (https://www.youtube.com/watch?v=6ohN_9FOLRA...eature=youtu.be)
@galodoido what libraries and headers did you add to your Mac to cross compile? I tried to compile on my Mac but got an error about a missing elf.h header? I was following the instructions to cross-compile from the "How to build" article.
Sorry , only saw your message today : there is a lot of messages in this forum :
My macbook air has dual boot : mac and linux. ( debian stretch ), as I mentioned before in this topic.
ok gotcha, I think I'll need to set up a VirtualBox image to move this forward