zoukankan      html  css  js  c++  java
  • Build a Custom Android Kernel Guide

    1、package to install in ubuntu or Debian

    $ sudo apt-get install -y build-essential kernel-package libncurses5-dev bzip2

    2、Prepare Kernel Source and excute the command

    $ make clean && make mrproper

    3、Excute the command :the default config file location /arch/arm/configs/yourdevice_defconfig

    $ make yourdevice_defconfig

    • Or if you have the Android SDK installed you can get your config by executing the following:

      $ adb pull /proc/config.gz

      $ gunzip config.gz

    4、Point the "Makefile" to the compilation tools

    $ export CROSS_COMPILE=/home/***/ndk/toolchains/arm-eabi-4.4.0/prebuilt/linux-x86/bin/arm-eabi-

    5、Apply any kernel patches ie. BFS, BFQ etc.

    $ patch -p1 < yourpatch.patch

    6、Further configure your kernel if so desired:

    $ make menuconfig

    7、Execute compile command:

    $ make -j5 ARCH=arm

    8、Kernel & Wifi module locations after compilation:

     /arch/arm/boot/zImage
    /drivers/net/wireless/bcm4329_204/bcm4329.ko

  • 相关阅读:
    Oracle数据库5--数据库对象
    Oracle数据库4--多表关联
    Session
    cookie
    Servlet的部分response响应处理
    Servlet的部分request请求处理
    Linux部分命令
    Linux基础
    弹性布局
    animation 动画
  • 原文地址:https://www.cnblogs.com/ikaka/p/3939609.html
Copyright © 2011-2022 走看看