|
今天終于讓Linux內(nèi)核在飛凌的板子上跑起來了,想來也是艱辛,為了移植成功,斷斷續(xù)續(xù)做了將近兩個(gè)月的努力,期間郁悶不可言
語形容啊, 了解其中艱辛,將自己移植步驟與心得與大家分享,希望對初踏次領(lǐng)域之人有所幫助,我所寫的成果一部分也是網(wǎng)上前
輩的所作,并非完全本人原創(chuàng)。
一、 移植環(huán)境
主 機(jī):VMWare-Ubuntu
開發(fā)板:飛凌OK6410 nandflash,Kernel:2.6.36.2
編譯器:arm-linux-gcc-4.3.2.tgz
u-boot:u-boot-1.1.6
注:編譯器和u-boot 都是飛凌開發(fā)板自帶的
二、 源碼獲得
內(nèi)核源碼到http://www.all.kernel.org/下載;
三、 移植步驟:
1.將Linux2.6.34.2內(nèi)核源碼放到工作目錄文件夾下,并解壓。
#tar xzvf linux2.6.36.2.tar.gz –c /
#pwd
/
# cd linux2.6.36.2
2. 修改內(nèi)核源碼根目錄下的Makefile文件(CROSS_COMPILE =的值因個(gè)人情況而定,其他可以照做)
#gedit Makefile
......
#SUBARCH := $(shell uname -m | sed -e s/i.86/i386/ -e s/sun4u/sparc64/ \
# -e s/arm.*/arm/ -e s/sa110/arm/ \
# -e s/s390x/s390/ -e s/parisc64/parisc/ \
# -e s/ppc.*/powerpc/ -e s/mips.*/mips/ )
......
#ARCH ?= $(SUBARCH)
#CROSS_COMPILE ?=
ARCH = arm
CROSS_COMPILE = /usr/local/arm/usr/local/arm/4.3.2/bin/arm-none-linux- gnueabi-
3添加NandFlash分區(qū)信息.
修改arch/arm/mach-s3c64xx/mach-smdk6410.c文件,添加Nand Flash的分區(qū)信息和Nand Flash的硬件信息。(藍(lán)色字體為添加部分)
#pwd
#gedit mach-smdk6410.c //add here 注意:此處的nandflash分區(qū)信息是飛凌自帶的2.6.28的內(nèi)核設(shè)置,由
于此處要用到uboot是飛凌的,所以分區(qū)信息也要按人家的來 添加頭文件 #include #include
#include #include struct mtd_partition s3c_partition_info[]
= {
{
.name = "Bootloader",
.offset = 0,
.size = (256*SZ_1K),
.mask_flags =MTD_CAP_NANDFLASH,
},
{
.name = "Kernel",
.offset = (256*SZ_1K),
.size = (4*SZ_1M) - (256*SZ_1K),
.mask_flags = MTD_CAP_NANDFLASH,
},
#if defined (CONFIG_SPLIT_ROOT_FILESYSTEM)
{
.name = "Rootfs",
.offset = (4*SZ_1M),
.size = (80*SZ_1M),//
},
#endif
{
.name = "File System",
.offset = MTDPART_OFS_APPEND,
.size = MTDPART_SIZ_FULL,
}
};
static struct s3c2410_nand_set s3c_nandset[]={
[0]= {
.name ="s3c24xx-nand",
.nr_chips = 1,
.nr_partitions =ARRAY_SIZE(s3c_partition_info),
.partitions =s3c_partition_info,
}
};
static struct s3c2410_platform_nand s3c_platform={
.tacls =25,
.twrph0 =55,
.sets = &s3c_nandset,
.nr_sets =ARRAY_SIZE(s3c_nandset),};
//add here…
static struct platform_device *smdk6410_devices[] __initdata = {
#ifdef CONFIG_SMDK6410_SD_CH0
&s3c_device_hsmmc0,
#endif
#ifdef CONFIG_SMDK6410_SD_CH1
&s3c_device_hsmmc1,
#endif
&s3c_device_i2c0,
&s3c_device_i2c1,
&s3c_device_fb,
&s3c_device_ohci,
&s3c_device_usb_hsotg,
&s3c64xx_device_iisv4,
//add here
&s3c_device_nand,
//add here…
}
static void __init smdk6410_map_io(void){
u32 tmp;
//add here
s3c_device_nand.name = "s3c6410-nand";
//add here…
…
}
static void __init smdk6410_machine_init(void){
u32 cs1;
s3c_i2c0_set_platdata(NULL);
s3c_i2c1_set_platdata(NULL);
s3c_fb_set_platdata(&smdk6410_lcd_pdata);
//add here
s3c_nand_set_platdata(&s3c_platform);//
//add here…
} |
|