[DEV] Kernel development HOWTO and Interactive menu

Search This thread

Droidzone

Inactive Recognized Developer
Sep 24, 2010
5,531
2,283
Kochi
www.droidzone.in
OnePlus 9 Pro
mmhh...sorry again...compile seems to be fine...but where is the zImage...? maybe it was a error and i did not see..will try tomorrow again

with kind regards

It should be in arch/arm/boot

The modules can be collected with this:
Code:
find . -name '*ko' -exec cp '{}' ~/somewhere

If you copy the zip template to a dir ~/kernel_flashable, then the following command makes a flashable zip automatically for you:

Code:
cp arch/arm/boot/zImage ~/kernel_flashable
find . -name '*ko' -exec cp '{}' ~/kernel_flashable/system/lib/modules/ \;
cd ~/kernel_flashable
zip -r mykernel ./
 

Droidzone

Inactive Recognized Developer
Sep 24, 2010
5,531
2,283
Kochi
www.droidzone.in
OnePlus 9 Pro
An answer without the 'I'm a dev' God complex, yes just flash the zip

Sent from my Full Android on Bravo using XDA App

True.. I usually answer every qn asked on my Rom threads. But resisted the impulse to do that because if such qns fill up these threads meant to teach advanced users, then it becomes difficult for these very same people to find answers to genuine compilation related queries answered before.. I have some threads on Q & A for newbies teaching them adb, and tutorials on recovering a Desire..There, I try to politely answer every qn asked. I even hangout at Q & A occasionally to answer unanswered qns..

No complex here, coutts.. We're still saplings compared to real devs like snq-, you, richardtrip and others. :) The Recognized Developer logo be damned.. It doesnt mean a thing when it's not given for pioneers like you guys.
 
Last edited:

Droidzone

Inactive Recognized Developer
Sep 24, 2010
5,531
2,283
Kochi
www.droidzone.in
OnePlus 9 Pro
mmhh...next prob...(sorry have said that iḿ a noob with kernel compile)

arm-linux-androideabi-gcc: command not found...

Did this means the path in bashrc is not right..? Or must i simple restart the laptop...did not rebootet after i set the line

with kind regards..Alex

EDIT...Sorry what i thought...a simple reboot did the trick...now compile... :) :)

but now i must go to bed :( but tomorrow :)

That's because the path set in .bashrc becomes active only in the next terminal opened. So, if you opened a new terminal, it ought to have worked. It would also work if you manually typed the command to add PATH at the terminal, like:

PATH=$PATH:/pathto/NDK/bin
 

Alex-V

Inactive Recognized Developer
Aug 26, 2008
9,514
5,254
It should be in arch/arm/boot

The modules can be collected with this:
Code:
find . -name '*ko' -exec cp '{}' ~/somewhere

If you copy the zip template to a dir ~/kernel_flashable, then the following command makes a flashable zip automatically for you:

Code:
cp arch/arm/boot/zImage ~/kernel_flashable
find . -name '*ko' -exec cp '{}' ~/kernel_flashable/system/lib/modules/ \;
cd ~/kernel_flashable
zip -r mykernel ./
That's because the path set in .bashrc becomes active only in the next terminal opened. So, if you opened a new terminal, it ought to have worked. It would also work if you manually typed the command to add PATH at the terminal, like:

PATH=$PATH:/pathto/NDK/bin

Thx for the infos...will try again today...as all is set up..i only must make it :)


Sent from my HTC Desire using XDA Premium App
 

Alex-V

Inactive Recognized Developer
Aug 26, 2008
9,514
5,254

Alex-V

Inactive Recognized Developer
Aug 26, 2008
9,514
5,254
So ...now i need a bit help...i get this error:

Code:
CALL    scripts/checksyscalls.sh
  CHK     include/generated/compile.h
  CC      lib/decompress_bunzip2.o
  LD      lib/built-in.o
cc1: warnings being treated as errors
lib/decompress_bunzip2.c: In function 'get_next_block':
lib/decompress_bunzip2.c:511: error: the frame size of 1896 bytes is larger than 1024 bytes; see http://go/big_stack_frame
make[1]: *** [lib/decompress_bunzip2.o] Fehler 1
make: *** [lib] Fehler 2

have googled a bit...but no clear answer

with kind regards...Alex
 

Alex-V

Inactive Recognized Developer
Aug 26, 2008
9,514
5,254
:) I was asking if you could upload the makefile here..I could modify it to make it work and give it back..

Give me the main Makefire from the main kernel directory

ah...ok...here are the files from main and lib folder...and thx for help :)
 

Attachments

  • Makefile_lib_folder.zip
    1.6 KB · Views: 6
  • Makefile_main_folder.zip
    15.4 KB · Views: 3

Alex-V

Inactive Recognized Developer
Aug 26, 2008
9,514
5,254

Droidzone

Inactive Recognized Developer
Sep 24, 2010
5,531
2,283
Kochi
www.droidzone.in
OnePlus 9 Pro

Attachments

  • Makefile.zip
    15.4 KB · Views: 9

Droidzone

Inactive Recognized Developer
Sep 24, 2010
5,531
2,283
Kochi
www.droidzone.in
OnePlus 9 Pro
seems to run fine :)

so whats the difference..?

thx

When we compile anything with gcc we send it special flags to tell it what warnings we want to know, and what not..

Warnings are less serious than errors. They are just to help us fix any possible bugs in the code. They may not even be real bugs either. In case of gcc, compilation takes an additional paramter (option) called -o2 meaning optimization with level 2. Optimization leads to additional warnings.

So when it builds, there is one more paramater for gcc passed from KBUILD_CFLAGS, called -Werror. This is what causes gcc to stop compiling even if there was a warning while compiling, this is called making a warning a hard error. Whether we want it to make it an error or not is decided by the KBUILD_CFLAGS flag called -Werror. If -Werror is set, warnings become errors. So code stops even if the warning is due to optimization of gcc. There are two fixes-one is to turn off the "Make warnings errors" option in Menuconfig. The other option is to search and locate "-Werror" flag within the Makefiles and remove it.

A third and more drastic solution is to tell gcc that we want all warnings to be ignored, and to build even if there are warnings. That's what I did in the second file. I changed this:

Code:
KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
		   -fno-strict-aliasing -fno-common \
		   -Werror-implicit-function-declaration \
		   -Wno-format-security \
		   -fno-delete-null-pointer-checks

to this:

Code:
KBUILD_CFLAGS   := -Wall -Wundef -Wstrict-prototypes -Wno-trigraphs \
		   -fno-strict-aliasing -fno-common \
		   -Werror-implicit-function-declaration \
		   -Wno-format-security \
		   -fno-delete-null-pointer-checks \
		   -w

Notice the additional -w option. So gcc ignores all warnings. So it builds. :)
It will still stop building if there are real errors, so no need to worry :D
 
Last edited:

Top Liked Posts

  • There are no posts matching your filters.
  • 47
    I havent yet found a simple guide for compiling kernels. Some of them assume too much, and some are just outdated. So I thought I'd write my own for devs/budding devs. Here you go!

    Note:
    This is not a guide for newbies. It's a dev guide for devs.
    Research before asking questions, please

    For The Menu driven interactive kernel build script, see Post #31


    I will be developing this guide as I go, so it will be incomplete initially, or lacking in detailed explanations.

    Essentials:
    1. Ubuntu Box (By this I mean a PC with a Ubuntu installation, not a live CD)
    2. A toolchain-Either the Android NDK, or your own toolchain
    3. HTC Desire GB/Froyo source from htcdevs.com, or sources from github
    4. Familiarity with the linux shell and basic linux commands.
    5. The will to learn ;)

    First things first,

    1. Getting the sources


    The HTC Desire source is available from two kinds of resources-you can either get it from htcdevs.com (official HTC Dev site), or from source code uploaded from someone else. For the purpose of this tutorial, I'll assume we're working on the official HTC GB source code. So download bravo_2.6.35_gb-mr.tar.gz from htcdevs.com.


    2. Setting up the compilation box and preparing source code

    2.1 Install some essential linux packages from the Linux terminal:

    Code:
    sudo apt-get install libncurses5-dev


    2.2 Extract the source code

    The file you downloaded is a tar archive (like a zip file), so you need to extract it to a convenient location. Let's hit the linux shell-open a terminal window in linux (Accessories->Terminal)

    Type:
    Let's go to our home directory:
    Code:
    cd ~/
    Now, create the directories for our kernel compilation box.

    Code:
    mkdir -p ~/android/kernel
    Now you need to copy the tar.gz file from wherever you downloaded it to, to this dir.

    Extract the archive:
    Code:
    tar -xvf ~/android/kernel/bravo_2.6.35_gb-mr.tar.gz
    
    cd ~/android/kernel/bravo_2.6.35_gb-mr
    Now we can view the extracted files within the directory ~/android/kernel/bravo_2.6.35_gb-mr/

    2.3 Set up the toolchain

    A toolchain is a set of programs which allow you to compile source code (any source code, not just kernels). The toolchain is specific for the processor and hardware, so we need a toolchain specific for Android and especially the Desire. If you're a semiadvanced-pro user, you may consider compiling your own toolchain (See theGanymedes' guide for doing so). If compilation of kernels is all that you require, fortunately for you, there is an easy way-the Android NDK - v7 (latest as of now) is available here

    Get the NDK for Linux - android-ndk-r7-linux-x86.tar.bz2


    Code:
    mkdir -p ~/android/ndk
    Now copy the NDK file to ~/android/ndk

    Whenever I say copy, you have to manually copy the file with any file manager. Nautilus comes with Ubuntu, and Dolphin with Kubuntu. You may also use the shell of course with

    Code:
    cp [sourcefile] [destination]
    Extract it:

    Code:
    tar -jvxf android-ndk-r7-linux-x86.tar.bz2
    Now add the path for your toolchain to the env variable:

    Code:
    gedit ~/.bashrc
    At the end of the file, add this line:
    Code:
    PATH=$PATH:~/android/ndk/android-ndk-r7-linux-x86/toolchains/arm-linux-androideabi-4.4.3/prebuilt/linux-x86/bin


    3. Setting up kernel parameters

    Kernels are compiled with a program called gnu make, and use a set of configuration options specified within a file called Makefile.

    A vital point to note is that kernels are compiled with a program called gcc (basically the gnu C compiler), and our NDK itself has its own optimized version of gcc. While compiling, we're actually cross compiling it (meaning compiling a binary package on a system which is different from the actual system which is meant to run it- you're compiling it on your PC while it's actually meant to run on your Desire)

    This means that when you compile it, you have to make sure that you compile it with the NDK's version of gcc instead of the system version. Otherwise you end up with a kernel meant to run on your pc, duh! Specifying which gcc to use is by the CROSS_COMPILE variable. You can set it up with this command:
    Code:
    CROSS_COMPILE=arm-linux-androideabi-
    Note the hyphen (-) at the end, and do not forget to include it! At compilation time, system will actually use this variable to find all the programs it needs. Eg: The path for gcc will become arm-linux-androideabi-gcc

    We can compile kernels with many different options, like with ext4 support, or without; ext4 support as part of the kernel zImage (in which case it makes the kernel larger), or as a loadable module (of the form somename.ko, which is loaded at init.d/init.rc with the command insmod modulename.ko)

    We specify the exact options we require with the help of a useful configuration program called menuconfig (which as the name suggests, is a menu for configuration of make options).

    An important thing to note is that as far as kernel compilation is concerned, there are a vast amount of options to setup, and unless you're thorough with kernel compilation, you wont be able to set up the options correctly and get your kernel to boot. Fortunately for us, the kernel source already comes with a default set of parameters which can be easily set up.

    Note that all make commands must be executed within the directory bravo_2.6.35_gb-mr. Let's go there now:

    Code:
    cd  ~/android/kernel/bravo_2.6.35_gb-mr
    make ARCH=arm CROSS_COMPILE=arm-linux-androideabi- bravo_defconfig
    This produces a .config file (used by the menuconfig) containing essential parameters to produce a booting kernel for the Desire.

    Note: There is a simpler way to get the basic .config file, and this is to get it from a running kernel built by someone else. You can extract the .config from a running kernel with these commands:

    Code:
    cd  ~/android/kernel/bravo_2.6.35_gb-mr
    adb pull /proc/config.gz
    zcat config.gz > .config
    Now we can open menuconfig and add anything we need in addition.

    Code:
    make ARCH=arm CROSS_COMPILE=arm-linux-androideabi- menuconfig
    You can view the huge amount of options available in menuconfig.

    You can add ext4 support for example (See image above)
    Once you're done choosing options, you can exit menuconfig.

    4. Compiling it

    This is simple. The basic command is:

    make ARCH=arm CROSS_COMPILE=arm-linux-androideabi- -j10

    The -j10 specifies the number of jobs to execute per operation. I can usually go upto 50 on my Quad core CPU. Beware, this can bring a slow CPU to a crawl and freeze up linux itself.

    During compilation, you will see all sorts of messages, which may include warnings too. In most cases, its safe to ignore warnings. If there are errors, the compilation will stop, and you will have to fix the issues.

    5. Distributing your kernel to users
    At the end of compilation, it generates files named zImage, and various .ko files.

    You have to copy them from their default location to a zip file. The best way is to use my variant of koush's Anykernel, and copy the files to it. Then, you can zip the whole folder and lo and behold-you have your flashable kernel zip which you can distribute to others.

    You can also remove the zImage and the modules from /system/lib/modules of any kernel zip available with you, and copy over your files to it, at the correct location.

    So, let's say that you have extracted an existing kernel zip to the location ~/flashable

    The file structure should be like this:

    Code:
    |-- kernel
    |   |-- dump_image
    |   |-- mkbootimg
    |   |-- mkbootimg.sh
    |   |-- unpackbootimg
    |   `-- zImage
    |-- META-INF
    |   |-- CERT.RSA
    |   |-- CERT.SF
    |   |-- com
    |   |   `-- google
    |   |       `-- android
    |   |           |-- update-binary
    |   |           `-- updater-script
    |   `-- MANIFEST.MF
    `-- system
        `-- lib
            `-- modules
                `-- bcm4329.ko
    
    8 directories, 11 files
    I've included my flashable zip directory along with this post. Download file kernel_flashable.tar.bz2.zip to ~/

    Code:
    cd ~/
    tar -jvxf kernel_flashable.tar.bz2.zip
    This will create the directory structure outlined above.

    Now after every compilation of the kernel, execute these commands from where you executed make:

    Code:
    cp arch/arm/boot/zImage ~/kernel_flashable
    find . -name '*ko' -exec cp '{}' ~/kernel_flashable/system/lib/modules/ \;
    cd ~/kernel_flashable
    zip -r mykernel ./
    This will create mykernel.zip at ~/kernel_flashable. You can distribute this to your users to flash. Make sure you edit updater-script before though :)
    20
    Common errors and other stuff

    Ok, post #1 was simple stuff. Now, supposing you get errors while compiling. Post #2 is about that, and ups the level of knowledge a bit..

    Some kernel compilation errors:

    Treat warnings as errors-Solved by removing the string "-Werror" from all Makefiles of the file which failed to compile. Some people had said that the real error (Array out of bounds warning) was because of gcc optimizations. But putting -O2 to -O0 didnt do a thing.
    No of jobs - ought not to exceed 50.
    "warning: variable set but not used [-Wunused-but-set-variable]"-Look at KBUILD_CFLAGS in the main Makefile. Add -Wno-error=unused-but-set-variable to the existing set of flags.


    Note the following from gcc manual:



    -WerrorMake all warnings into hard errors. Source code which triggers warnings will be rejected.
    -w Inhibit all warning messages. If you're familiar with C code and like to fix stuff, rather than ignoring potential bugs, use this only as a last resort- A 'brahmastram' (most powerful weapon in your time of gravest need) as the epics would say ;)
    -WerrorMake all warnings into errors.
    -Werror=Make the specified warning into an error. The specifier for a warning is appended, for example -Werror=switch turns the warnings controlled by -Wswitch into errors. This switch takes a negative form, to be used to negate -Werror for specific warnings, for example -Wno-error=switch makes -Wswitch warnings not be errors, even when -Werror is in effect. You can use the -fdiagnostics-show-option option to have each controllable warning amended with the option which controls it, to determine what to use with this option.

    So what I did to suppress errors was to add:
    Code:
    KBUILD_CFLAGS += -w
    KBUILD_CFLAGS += -Wno-error=unused-but-set-variable


    Though the -Wunused-but-set-variable is not a real issue in itself, it generates so much "noise" that you may miss actual make errors.

    This is the error what I was talking about..

    Code:
    drivers/net/wireless/bcm4329_204/wl_iw.c: In function 'wl_iw_set_pmksa':
    drivers/net/wireless/bcm4329_204/wl_iw.c:5075:5: error: array subscript is above array bounds [-Werror=array-bounds]
    drivers/net/wireless/bcm4329_204/wl_iw.c:5078:5: error: array subscript is above array bounds [-Werror=array-bounds]

    Solution:
    Edit drivers/net/wireless/bcm4329_204/Makefile

    Locate -Werror within DHDCFLAGS, and delete it.


    Code:
    DHDCFLAGS = -DLINUX -DBCMDRIVER -DBCMDONGLEHOST -DDHDTHREAD -DBCMWPA2 \
    -DUNRELEASEDCHIP -Dlinux -DDHD_SDALIGN=64 -DMAX_HDR_READ=64 \
    -DDHD_FIRSTREAD=64 -DDHD_GPL -DDHD_SCHED -DBDC -DTOE -DDHD_BCMEVENTS \
    -DSHOW_EVENTS -DBCMSDIO -DDHD_GPL -DBCMLXSDMMC -DBCMPLATFORM_BUS \
    -Wall -Wstrict-prototypes -Werror -DOOB_INTR_ONLY -DCUSTOMER_HW2 \
    -DDHD_USE_STATIC_BUF -DMMC_SDIO_ABORT -DWLAN_PFN -DWLAN_PROTECT \
    -DBCMWAPI_WPI \

    This will prevent gcc from treating mere warnings as errors.
    15
    How to modify kernels by applying mods - Applying Kernel Patches

    Ok, you have compiled a simple stock kernel. Now what? Would you like to add fixes/mods developed by other kernel devs? This post explains patches and how exactly to do this.

    Patches to the kernel are applied via patch files. Patch files are simple text files generated by the linux diff program which takes two text files, compares them and writes the differences (hence called diff) to another text file which by convention has the extension .patch

    Attached to this post is a patch containing my "Extended battery" fix with Sibere's battfix. I'll explain patching with this. Let's understand the patch file. Open it up in any text editor.

    Code:
    diff -rupN -X /home/droidzone/android/kernel/exclude.opts bravo_2.6.35_gb-mr/drivers/power/ds2784_battery.c bravo_2.6.35_gb-mr.main//drivers/power/ds2784_battery.c
    --- bravo_2.6.35_gb-mr/drivers/power/ds2784_battery.c    2011-08-25 13:16:53.000000000 +0530
    +++ bravo_2.6.35_gb-mr.main//drivers/power/ds2784_battery.c    2011-11-06 16:43:21.544317342 +0530
    @@ -118,8 +118,11 @@ PS. 0 or other battery ID use the same p
     /* Battery ID = 1: HT-E/Formosa 1400mAh */
     #define BATT_ID_A                1
     #define BATT_FULL_MAH_A            1400
    -
     #define BATT_FULL_MAH_DEFAULT    1500
    +#define BATT_FULL_MAH_CAMERONSINO    2400
    +#define BATT_ID_CAMERONSINO
    +#define BATT_TYPE 0
    +
    Note the first line:
    Code:
    diff -rupN -X /home/droidzone/android/kernel/exclude.opts  bravo_2.6.35_gb-mr/drivers/power/ds2784_battery.c  bravo_2.6.35_gb-mr.main//drivers/power/ds2784_battery.c
    diff -rupN basically describes the command that was used to generate this patch. The -u means that the patch file is something called a universal patch

    bravo_2.6.35_gb-mr/drivers/power/ds2784_battery.c was the original file, and bravo_2.6.35_gb-mr.main//drivers/power/ds2784_battery.c was the target file or file which contains the mod..

    How to apply patch files?

    The command depends on where your current directory is. If you're in ~/android/kernel/bravo_2.6.35_gb-mr/ and your current directory contains the directory 'drivers', you can apply this patch with this command:

    Code:
    patch -p1<extended_battfix.patch

    If you're within drivers, then you have to modify the command like this:

    Code:
    patch -p2<extended_battfix.patch

    Hope you get the gist. Basically, as you move into the source tree, you have to increment the patch level by the number of directories you've moved down into. Very simple, isnt it?
    5
    Sharing and Collaborating - Using Github and Commits

    Kernel compilation is a group effort (at least it ought to be). When different devs work on different parts of the code and create their own mods, development progresses. For this purpose, it is important that you share your code with other devs. The best way to do this to upload your sources to github.

    First, create a github account.

    Next you can view other devs' github sources and examine their commits. Commits are basically patches applies to the previous source uploaded. Github commits use the universal patch format and can be viewed directly, downloaded as patch files, and applied to your code. You can also choose to download the whole source tree uploaded by another dev and examine it.
    4
    Ok, the basic guide is done, guys... If you have doubts, I'll try to clear them