树莓派内核编译-惠州市少帅音响科技有限公司

少帅音响会员登录

没有账号?30秒快速注册
注册会员的好处
1、注册会员,立即赠送元现金。
2、注册可获得专属帐户,尊享品质服务;
3、获得更多特价促销信息;
4、在线提交售后保修,查阅保修进程。
纯净线性电源
三层滤波+纯线性分立式稳压电源工作!
DIY定制
一对一专业客服接待,按客户要求定制。
专业开发团队
拥有一支专业扎实、团结进取、朝气蓬勃的技术研发团队!
产品齐全
DAC解码、耳放、数字界面、线性电源、数字播放器。

当前位置 : 首页>技术中心

树莓派内核编译
收藏 打印 发给朋友 举报
来源:少帅音响 发布者:管理员 浏览:3676 阅读权限:游客 发表时间:2015/8/24 11:08:34
标签: 树莓派 

本文转自:http://my.oschina.net/funnky/blog/141249
概述
本文会详细介绍如何编译树莓派的内核镜像. 通过两种方式可以实现:

直接在树莓派上编译
在其他Linux系统上进行交叉编译
然而, 我们强烈建议使用交叉编译. 因为树莓派的处理能力较低, 进行本地编译会花费太长时间.

 编译步骤
在这一小节中, 我们会手把手告诉你编译所需的每一步. 你可以在本文最上方的目录中快速定位到详细介绍某步骤的章节. 请确保您有浏览文件系统和跨平台移动文件的能力, 并对Linux内核编译, 文件系统, 分区及设备驱动有大致了解.

This series of steps yielded a successful custom/updated hardfp kernel to a stock Raspbian installation, cross compiled from an amd64 Debian system without regression on any kernel configuration options or requiring modified boot parameters. 请注意, 最糟糕的情况就是编译Be aware that in the worst case, you may need to overlay a stock set of kernel/modules/firmware on the Raspberry Pi if something fails. 如果你不清楚如何操作, 很有必要先重烧一下SD卡. 在配置过程中如果没出现问题, 就请接着做下去:

获得最新的树莓派内核源码 (https://github.com/raspberrypi/linux)
设置环境变量KERNEL_SRC为源码所在路径 (例如 KERNEL_SRC=/home/me/linux/ )
获得最新的树莓派编译工具 (git clone https://github.com/raspberrypi/tools)
设置环境变量CCPREFIX为编译器所在路径 (例如 CCPREFIX=/home/me/tools/arm-bcm2708/arm-bcm2708-linux-gnueabi/bin/arm-bcm2708-linux-gnueabi- )
From the kernel clone location, clean the kernel source with "make mrproper"
Pull the /proc/config.gz from the running Raspbian installation
Prime kernel with the old config by running "ARCH=arm CROSS_COMPILE=${CCPREFIX} make oldconfig"
Modify the kernel config by either modifying the .config file or using "ARCH=arm CROSS_COMPILE=${CCPREFIX} make menuconfig"
使用命令"ARCH=arm CROSS_COMPILE=${CCPREFIX} make"编译新内核
设置环境变量MODULES_TEMP为源码所在路径 (例如 MODULES_TEMP=/home/me/modules/ )
Set aside the new kernel modules by using "ARCH=arm CROSS_COMPILE=${CCPREFIX} INSTALL_MOD_PATH=${MODULES_TEMP} make modules_install"
From the tools clone location, in the mkimage directory, run "./imagetool-uncompressed.py ${KERNEL_SRC}/arch/arm/boot/zImage"
把生成的kernel.img移动到树莓派的/boot/目录
Package up the modules into an archive such that at the top level, the structure looks like this:
./firmware
./firmware/brcm
./firmware/edgeport
./firmware/emi26
...
./modules
./modules/3.6.11+
./modules/3.6.11+/kernel
./modules/3.6.11+/kernel/lib
./modules/3.6.11+/kernel/fs
...
Move the modules archive to the Raspberry Pi and extract them such that the aforementioned firmware and modules directories overwrite /lib/firmware and /lib/modules
Get the latest raspberrypi firmware (git://github.com/raspberrypi/firmware.git)
Transfer the following files from the firmware/boot directory to the Raspberry pi /boot directory:
bootcode.bin
fixup.dat
start.elf
Transfer the firmware/hardfp/opt directory to the Raspberry pi /opt directory
重启树莓派
现在树莓派应该是使用新内核启动的了.

 获得内核源码
The kernel source should be downloaded from the RPI linux section on GitHub. Although you could just compile the vanilla kernel from Kernel.org, it will not have the necessary drivers and modules for the Broadcom SoC on the RPi. You can however apply patches from the vanilla kernel to the RPi one - be prepared for potential compiler grumbles though!

截至到本文发稿, three branches of interest are available:

rpi-3.2.27 - This is the version of the kernel currently used in Raspbian, but not exactly the same - Raspbian stock kernel image (the one available from the foundation's website) has a 3.2.27+ version marking. Please see this post for more details.
rpi-3.6-y - This is a development branch based on the current vanilla kernel( GIT rebased ) . It replaced the 3.2 development branch end marc 2013.
截至到本文发稿, the exact version is 3.6.11.

rpi-3.8-y - This is a Alpha development branch based on the current vanilla kernel( GIT rebased) . It will eventually replace the 3.6 branch.
新更新, 有新版本3.8.8 ( 22-04-2013 ).

你可以通过git直接下载源码. 比如下载3.2分支:

git init
git clone --depth 1 git://github.com/raspberrypi/linux.git
git checkout rpi-3.2.27
下载3.6稳定版分支:

git init
git fetch git://github.com/raspberrypi/linux.git rpi-3.6.y:refs/remotes/origin/rpi-3.6.y
git checkout rpi-3.6.y
下载3.8开发版分支:

git init
git fetch git://github.com/raspberrypi/linux.git rpi-3.8.y:refs/remotes/origin/rpi-3.8.y
git checkout rpi-3.8.y
或者从网站下载压缩包: rpi-3.2.27 rpi-3.6.y rpi-3.8.y

 获得编译工具
接下来, 我们需要获得GCC来编译内核.

 1. 在树莓派上编译
 Raspbian或PiBang
apt-get update
apt-get -y dist-upgrade
apt-get -y install gcc make
 Arch Linux
pacman -Syu
pacman -S gcc make
 OpenSuSE Linux
Detailed OpenSuSE RPI 12.3 Image 20130407 + 3.8.8 kernel hack  tutorial witten  ( 22042013 updated ) 
   see: http://www.raspberrypi.org/phpBB3/viewtopic.php?f=87&t=40664&p=331953#p331953 Kernel Compile takes ~22H on RPI Model B  due massive module compiles , Include all IP_VS , ARPD , Fuse-zfs  , Zram and more :-)
This works as well for Debian , Fedora remix and others ( just package Install command differ )
#     
SuSE:  zypper install u-boot-tools sudo gcc automake autoconf bison gettext flex libncurses5 ncurses-devel
Debian / Ubuntu : apt-get install ncurses-base libncurses5 ncurses-bin ncurses-term libncurses5-dev sudo gcc automake autoconf bison gettext flex
                  apt-get install uboot-mkimage uboot-envtools
cd /usr/src
mkdir GIT; cd GIT; git init; D=`date +"%m-%d-%Y"`
git fetch git://github.com/raspberrypi/linux.git rpi-3.8.y:refs/remotes/origin/rpi-3.8.y
git checkout rpi-3.8.y
tar cpf rpi-3.8.y.$D.tar   rpi-3.8.y

cd /usr/src
tar xpf  GIT/rpi-3.8.y.$D.tar
rm linux
ln -s linux-rpi-3.8.y linux

cd /usr/src/linux
kversion=$(make -s kernelrelease)
cp linux/.config .config_$kversion

cd /usr/src/
- get config-3.8.7.ipvs+krb5+arpd.tar.bz2 from the Tutorial:
wget http://www.raspberrypi.org/phpBB3/download/file.php?id=3174
- copy the .config to /usr/src/linux: 
tar xpfj config-3.8.7.ipvs+krb5+arpd.tar.bz2


make  the Kernel any go sleep :-)
 cd linux
 make oldconfig
 nohup make zImage dep modules &

Next day .. Install It.
cd /usr/src/linux
kversion=$(make -s kernelrelease)
echo $kversion
mkdir -p  /boot/$kversion
make ARCH=arm INSTALL_PATH=/boot/ install
cp System.map /boot/System.map-$kversion
cp System.map-$kversion /boot/System.map
make ARCH=arm modules_install INSTALL_MOD_PATH=/
make ARCH=arm INSTALL_PATH=/boot/ zinstall
cp .config /boot/config-$kversion
cp ./Module.symvers  /boot/symvers-$kversion
cp arch/arm/boot/Image /boot/kernel.img
 2. 在linux上交叉编译
Please note that when cross-compiling, your compiler may not target the correct ARM processor by default. This will at best reduce performance, or worse, compile for a much newer processor resulting in illegal instructions in your code. The pre-built compiler or a custom-built compiler are recommended because of this. (For example, the latest GCC Linaro binary targets armv7-a by default, whereas the RPi requires armv6kz). It is possible to add extra compiler options to the HOSTCFLAGS line in Makefile. The correct flags are shown on the software page - note that you may also need to add -marm if your compiler produces Thumb code by default.

 Use the provided compiler
Download the pre-built bmc2708 compiler from the RPI tools section on GitHub.

git clone git://github.com/raspberrypi/tools.git
or you can download a tarball from the website using this link.

 Custom-built Linaro GCC
See Linaro GCC Compilation.

 Ubuntu
apt-get install gcc-arm-linux-gnueabi make ncurses-dev
 Gentoo Linux
crossdev -S -v -t arm-unknown-linux-gnueabi
Crossdev should create a cross-toolchain using the latest stable versions of the required packages. If it fails, you can specify exact versions by removing the "-S" flag and adding the "--b", "--g", "--k" and "--l" flags. On 2012-05-06, cross -S -v -A gnueabi arm works just fine.

 Arch Linux
yaourt -S arm-linux-gnueabi-gcc
 在OSX上交叉编译
 Macports
The Kernel source requires a case-sensitive filesystem. If you do not have a HFS+ Case-sensitive partition that can be used, create a disk image with the appropriate format. Ensure latest Xcode and command line tools are installed from Apple Developer Connection Install macports

port install arm-none-eabi-gcc
port install arm-none-eabi-binutils
If you get an error message that elf.h is missing

sudo port install libelf && sudo ln -s /opt/local/include/libelf /usr/include/libelf
From opensource.apple.com, download and copy elf.h and elftypes.h to /usr/include

Edit elf.h and add

#define R_386_NONE        0
#define R_386_32          1
#define R_386_PC32        2
#define R_ARM_NONE        0
#define R_ARM_PC24        1
#define R_ARM_ABS32       2
#define R_MIPS_NONE       0
#define R_MIPS_16         1
#define R_MIPS_32         2
#define R_MIPS_REL32      3
#define R_MIPS_26         4
#define R_MIPS_HI16       5
#define R_MIPS_LO16       6
If you get a "SEGMENT_SIZE is undeclared" error open the Makefile and change the line:

NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include)
to

NOSTDINC_FLAGS += -nostdinc -isystem $(shell $(CC) -print-file-name=include) -Dlinux
Complete script requires raspberrypi.config to be in the same folder that you execute from

sudo port install arm-none-eabi-gcc
sudo port install arm-none-eabi-binutils
sudo port install libelf && sudo ln -s /opt/local/include/libelf /usr/include/libelf
sudo curl http://opensource.apple.com/source/dtrace/dtrace-48/sys/elftypes.h?txt -o  /usr/include/elftypes.h
sudo curl http://opensource.apple.com/source/dtrace/dtrace-48/sys/elf.h?txt -o /usr/include/elf.h
#code to append to elf.h
echo "
#define R_386_NONE 0
#define R_386_32 1
#define R_386_PC32 2
#define R_ARM_NONE 0
#define R_ARM_PC24 1
#define R_ARM_ABS32 2
#define R_MIPS_NONE 0
#define R_MIPS_16 1
#define R_MIPS_32 2
#define R_MIPS_REL32 3
#define R_MIPS_26 4
#define R_MIPS_HI16 5
#define R_MIPS_LO16 6" > elf-append.h
sudo -s 'cat elf-append.h >> /usr/include/elf.h'

#Make a case sensitive 3gb disk image, raspberrypi-kernel, and attach it
hdiutil create -size 10g -type SPARSEBUNDLE -nospotlight -volname raspberrypi-kernel -fs "Case-sensitive Journaled HFS+" -attach ./raspberrypi-kernel.dmg
cp raspberrypi.config /Volumes/raspberrypi-kernel/
mkdir /Volumes/raspberrypi-kernel/src
cd /Volumes/raspberrypi-kernel/src

#get source, either 1. from zip (faster), or 2. from git
#1. from zip
curl https://codeload.github.com/raspberrypi/linux/zip/rpi-3.6.y -o ./rpi-3.6.y.zip
unzip rpi-3.6.y.zip
#2. from git (disabled)
#git init
#git fetch git://github.com/raspberrypi/linux.git rpi-3.6.y:refs/remotes/origin/rpi-3.6.y
#git checkout rpi-3.6.y

cpu=$(sysctl hw.ncpu | awk '{print $2}')
cpup1=$((cpu+1))

cd /Volumes/raspberrypi-kernel/src/linux-rpi-3.6.y/
export CCPREFIX=/opt/local/bin/arm-none-eabi-
make mrproper
cp /Volumes/raspberrypi-kernel/raspberrypi.config .config
#answer yes to all config options
#yes "" | make ARCH=arm CROSS_COMPILE=${CCPREFIX} oldconfig
make ARCH=arm CROSS_COMPILE=${CCPREFIX} -j$cpup1
#make ARCH=arm CROSS_COMPILE=${CCPREFIX} modules -j$cpup1
 Yagarto
Download and install from here.

 执行编译
Firstly, ensure your build directory is clean:

make mrproper
Next, in all cases, you will want to get a working kernel configuration to start from. You can get the one running on the RPi by typing the following (on the RPi):

zcat /proc/config.gz > .config
then copy .config into your build directory.

Alternatively, the default configuration is available in the downloaded kernel source in arch/arm/configs/bcmrpi_defconfig. Just copy this to .config in the build directory.

From this point on, if you are cross-compiling, set an environment variable CCPREFIX that points to the prefix of your compiler binary as each compiler will be named slightly differently.

export CCPREFIX=/path/to/your/compiler/binary/prefix-of-binary-
If you are building on the RPi, remove ARCH=arm CROSS_COMPILE=${CCPREFIX} from each command.

Ensure that your configuration file is up-to-date:

make ARCH=arm CROSS_COMPILE=${CCPREFIX} oldconfig
If any configuration options have been added, you will be asked what set each option to. If you don't know the answer, just press enter to accept the default.

Optionally, if you want to make changes to the configuration, run this next:

make ARCH=arm CROSS_COMPILE=${CCPREFIX} menuconfig
Now you are ready to build:

make ARCH=arm CROSS_COMPILE=${CCPREFIX}
If you are on a multi-core system, you can make the build faster by appending -jwhereis the number of cores on your system plus one (i.e. -j3 for 2 cores).

Find something else to get on with while the compilation takes place. On an average PC with the default configuration, this should take about 15 minutes.

The modules will be build with the following command.

make ARCH=arm CROSS_COMPILE=${CCPREFIX} modules
 移动内核镜像
The fully built kernel will be arch/arm/boot/Image. Copy your new kernel file into the RPi boot partition, though preferably as a new file (such as kernel_new.img) just in case it doesn't work. If you're building on the RPi, just copy the file to /boot. If you use a different filename, edit config.txt change the kernel line:

kernel=kernel_new.img
#kernel=kernel.img
Now you need to transfer the modules. Set an environment variable that points to a temporary module path.

export MODULES_TEMP=~/modules
In the build directory, run the following command:

make ARCH=arm CROSS_COMPILE=${CCPREFIX} INSTALL_MOD_PATH=${MODULES_TEMP} modules_install
The contents of this directory should then be copied into the RPi root directory. NOTE: If you have rebuilt the new kernel with exactly the same version as the one that's running, you'll need to remove the old modules first. Ideally this should be done offline by mounting the SD card on another system.

Your RPi should now be ready to boot the new kernel. However, at this point it's recommended that you update your GPU firmware and libraries. This is required if you've just moved from 3.2 to 3.6 as the firmware interface has changed.

 获得固件
The firmware and boot files should be updated at the same time to ensure that your new kernel works properly. Again, two branches are available:

master - This is the version of firmware currently used in Raspbian (i.e. it works with the 3.2 kernel).
next - This is a development branch which provides a newer GPU firmware to work with the updated drivers in the 3.6 kernel.
You can either download the source directly using git: You can download the firmware directly using git. For the master branch:

git clone git://github.com/raspberrypi/firmware.git
and for the next branch:

git fetch git://github.com/raspberrypi/firmware.git next:refs/remotes/origin/next
Or you can download a tarball from the website using these links: master next

 移动固件
Firstly, update the required boot files in the RPi boot directory with those you've downloaded. These are:

bootcode.bin
fixup.dat
start.elf
Next, you need to copy the VC libraries over. There are two copies of this: one for hard float and one for soft float. To find the correct one, run the following command:

${CCPREFIX}gcc -v 2>&1 | grep hard
If something prints out, and you can see --with-float=hard, you need the hard float ones. NOTE: The current version of Raspbian uses hard float.

Remove the /opt/vc directory from the RPi root, then:

For hard float, copy vc from the hardfp/opt directory into /opt in the RPi root directory
Otherwise copy vc from the top-level opt directory into /opt in the RPi root directory.
 测试
重启树莓派后进行检查:

If you have the serial port on the GPIO expander wired up, you should see the kernel booting.
屏幕显示 - 内核启动后出现登录提示界面.
The VC interface is working - if the 'OK' LED flashes regularly eight or so times every few seconds once the OS has booted, it's not. You can also test this by runningvcgencmd measure_temp. If it prints "VCHI initialization failed", you have the a mismatch between the firmware, the VC libraries, and the kernel driver.
Run uname -a and check that your new kernel is the one that's running.
Make sure you don't have any odd error messages during boot that may indicate a module isn't working properly. If you see missed completion of cmd 18 regarding DMA transfers to the SD card, you can safely ignore it.

会员登录

用户名:
密 码:
验证码: 图片看不清?点击重新得到验证码
会员:1660位 欢迎新会员:zfpsor

技术搜索


友情链接


service@hifiss.com
  • 少帅音响官方微信

    微信号:hifiss_com
    QQ群:166658170

  • 微信号:hifiss_com QQ群:113992955

    0752-2226716 Email:service@hifiss.com
  • 销售咨询 技术服务

官方微信

© 2010-2024All Rights Reserved.惠州市少帅音响科技有限公司V3.04 Beta1HiFiSS.Com Inc.粤ICP备2021045092号