Android、Linux内核源代码的下载和编译

时间:2023-01-11 15:57:53

1. 配置Android源代码下载环境
  a. 创建一个用于存放下载脚本文件的目录
    mkdir ~/bin
    PATH=~/bin:$PATH
  b. 下载repo脚本文件
    curl https://dl-ssl.google.com/dl/googlesource/git-repo/repo > ~/bin/repo
    chmod a+x ~/bin/repo
  c. 创建用于存放Android源代码的目录
    mkdir android_source
    cd android_source
  d. 初始化
    repo init -u https://android.googlesource.com/platform/manifest
  e. 下载
    repo sync

2. 编译Android源代码
  a. 初始化编译环境
    source build/envsetup.sh
  b. 选择目标
    lunch full-eng
  c. 编译Android源代码
    make -j4(设置编译时使用内核数)

3. 下载Linux内核源代码
  a. git clone https://android.googlesource.com/kernel/goldfish.git(下载内核)
  b. git checkout -b android-goldfish-2.6.29 remotes/origin/android-goldfish-2.6.29

4. 安装Android内核编译环境
  a. 修改Linux内核源代码根目录下的Makefile文件,ARCH ?= arm 和 CROSS_COMPILE?=arm-none-linux-gnueabi-

5. 配置和编译Linux内核(假设Linux内核源代码目录为/root/linux_kernel)
  export PATH=/root/compilers/arm-none-linux-gnueabi/bin:$PATH
  cd ~/linux_kernel
  make clean
  make