forked from ivanmmj/CommunitySGS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
executable file
·29 lines (22 loc) · 1008 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
################################################################################
1. How to Build
- get Toolchain
From Codesourcery site( http://www.codesourcery.com )
Ex) Download : http://www.codesourcery.com/sgpp/lite/arm/portal/package6493/public/arm-none-eabi/arm-2010q1-188-arm-none-eabi-i686-pc-linux-gnu.tar.bz2
recommand : up to 2009q3 version.
Feature : ARM
Target OS : "EABI"
package : "IA32 GNU/Linux TAR"
- edit build_kernel.sh
edit "TOOLCHAIN" and "TOOLCHAIN_PREFIX" to right toolchain path(You downloaded).
Ex) 30 TOOLCHAIN=`pwd`/../arm-2010q1/bin/ // `pwd` means current path.
31 TOOLCHAIN_PREFIX=arm-none-eabi- // You have to check.
- run build_kernel.sh
$ ./build_kernel.sh
2. Output files
- Kernel : linux-2.6.29/arch/arm/boot/zImage
- module : modules/*/*.ko
3. How to Clean
- run build_kernel.sh Clean
$ ./build_kernel.sh Clean
################################################################################