移植linux-2.6.32.2到qq2440

编译该版本内核使用的编译器版本:arm-linux-gcc 3.4.1

1.获取linux-2.6.32.2

2.解压内核

3.切换到刚解压的内核目录下:

cd linux-2.6.32.2

4.修改Makefile

将以下内容修改:

修改前:

ARCH            ?= $(SUBARCH)
CROSS_COMPILE   ?=
修改后:

ARCH            ?= arm
CROSS_COMPILE   ?= arm-linux-

5.使用以下命令生成.config

make s3c2410_defconfig

6.修改平台输入时钟,由于qq2440的输入时钟为12MHz的无源晶振,故修改arch/arm/mach-s3c2440/mach-smdk2440.c文件的以下内容:

修改前:

static void __init smdk2440_map_io(void)
{
        s3c24xx_init_io(smdk2440_iodesc, ARRAY_SIZE(smdk2440_iodesc));
        s3c24xx_init_clocks(16934400);
        s3c24xx_init_uarts(smdk2440_uartcfgs, ARRAY_SIZE(smdk2440_uartcfgs));
}
修改后:

static void __init smdk2440_map_io(void)
{
        s3c24xx_init_io(smdk2440_iodesc, ARRAY_SIZE(smdk2440_iodesc));
        s3c24xx_init_clocks(12000000);//修改了原来的数据为12000000
        s3c24xx_init_uarts(smdk2440_uartcfgs, ARRAY_SIZE(smdk2440_uartcfgs));
}
7.修改mtd分区信息,修改arch/arm/plat-s3c24xx/common-smdk.c文件的以下内容:

修改前:

static struct mtd_partition smdk_default_nand_part[] = {
        [0] = {
                .name   = "Boot Agent",
                .size   = SZ_16K,
                .offset = 0,
        },
        [1] = {
                .name   = "S3C2410 flash partition 1",
                .offset = 0,
                .size   = SZ_2M,
        },
        [2] = {
                .name   = "S3C2410 flash partition 2",
                .offset = SZ_4M,
                .size   = SZ_4M,
        },
        [3] = {
                .name   = "S3C2410 flash partition 3",
                .offset = SZ_8M,
                .size   = SZ_2M,
        },
 [4] = {
                .name   = "S3C2410 flash partition 4",
                .offset = SZ_1M * 10,
                .size   = SZ_4M,
        },
        [5] = {
                .name   = "S3C2410 flash partition 5",
                .offset = SZ_1M * 14,
                .size   = SZ_1M * 10,
        },
        [6] = {
                .name   = "S3C2410 flash partition 6",
                .offset = SZ_1M * 24,
                .size   = SZ_1M * 24,
        },
        [7] = {
                .name   = "S3C2410 flash partition 7",
                .offset = SZ_1M * 48,
                .size   = SZ_16M,
        }
};

修改后:

static struct mtd_partition smdk_default_nand_part[] = {
        [0] = {
                .name   = "Bootloader",
                .size   = 0x00000000,
                .offset = 0x00030000,
        },
        [1] = {
                .name   = "Kernel",
                .offset = 0x00050000,
                .size   = 0x00200000,
        },
        [2] = {
                .name   = "Root",
                .offset = 0x00250000,
                .size   = 0x03dac000,
        }

};

8.修改s3c2440的机器码,修改arch/arm/tools/mach-types文件的内容如下:

修改前:

s3c2440                 ARCH_S3C2440            S3C2440                 362

修改后:

s3c2440                 ARCH_S3C2440            S3C2440                 782

9.给内核打yaffs2文件系统的补丁,这样就可以让内核支持yaffs2文件系统

9.1从git仓库获取yaffs2源码,获取源码的命令如下:

git clone git://www.aleph1.co.uk/yaffs2

9.2将内核补丁插入内核,使用如下方法:

 a.先进入yaffs2目录下:

  cd yaffs2

 b.yaffs2目录下有一个脚本patch-ker.sh,那么执行该脚本即可:

  ./patch-ker.sh ./patch-ker.sh c m ../linux-2.6.32.2

10.内核配置:

使用以下命令进行配置操作:

make menuconfig

需要修改的配置项如下:

10.1[*] Enable loadable module support  --->

    [*]   Forced module loading                                  [*]   Module unloading

10.2System Type  --->

    S3C2410 Machines  --->

      [*] SMDK2410/A9M2410 ,该条目下的其他都不选

    S3C2440 Machines  --->

      [*] SMDK2440

      [*] SMDK2440 with S3C2440 CPU module,该条目下的其他都不选

    其余Machines选项下的条目均不选(不选的有s3c2400,s3c2412,s3c2442,s3c2443)

10.3Boot options  --->

    noinitrd root=/dev/mtdblock2 init=/linuxrc console=ttySAC0

10.4Userspace binary formats  --->

     [*] Kernel support for ELF binaries,其余选项均不选

10.5File systems  --->

      [*] Miscellaneous filesystems  --->

        <*>   yaffs2 file system support

        [*]         Lets yaffs do its own ECC

10.6-*- Native language support  --->

      <*>   Codepage 437 (United States, Canada)

      <*>   Simplified Chinese charset (CP936, GB2312)

      <*>   Traditional Chinese charset (Big5)

      <*>   NLS ISO 8859-1  (Latin 1; Western European Languages)

      <*>   NLS UTF-8

11.开始编译内核:

make zImage -j5

11.1出错如下:

In file included from fs/yaffs2/yaffs_guts.c:18:
fs/yaffs2/yaffs_endian.h:32: error: parse error before "swap_loff_t"
fs/yaffs2/yaffs_endian.h:32: error: parse error before "lval"
fs/yaffs2/yaffs_endian.h:33: warning: return type defaults to `int‘
fs/yaffs2/yaffs_endian.h:33: warning: function declaration isn‘t a prototype
fs/yaffs2/yaffs_endian.h: In function `swap_loff_t‘:
fs/yaffs2/yaffs_endian.h:34: error: `lval‘ undeclared (first use in this function)
fs/yaffs2/yaffs_endian.h:34: error: (Each undeclared identifier is reported only once
fs/yaffs2/yaffs_endian.h:34: error: for each function it appears in.)
fs/yaffs2/yaffs_endian.h:37: error: `Y_LOFF_T‘ undeclared (first use in this function)
fs/yaffs2/yaffs_endian.h:38: error: parse error before "vall"
fs/yaffs2/yaffs_endian.h:38: warning: statement with no effect
  CC      fs/proc/uptime.o
make[2]: *** [fs/yaffs2/yaffs_guts.o] 错误 1
make[2]: *** 正在等待未完成的任务....
  CC      fs/proc/version.o
In file included from fs/yaffs2/yaffs_checkptrw.c:16:
fs/yaffs2/yaffs_endian.h:32: error: parse error before "swap_loff_t"
fs/yaffs2/yaffs_endian.h:32: error: parse error before "lval"
fs/yaffs2/yaffs_endian.h:33: warning: return type defaults to `int‘
fs/yaffs2/yaffs_endian.h:33: warning: function declaration isn‘t a prototype
fs/yaffs2/yaffs_endian.h: In function `swap_loff_t‘:
fs/yaffs2/yaffs_endian.h:34: error: `lval‘ undeclared (first use in this function)
fs/yaffs2/yaffs_endian.h:34: error: (Each undeclared identifier is reported only once
fs/yaffs2/yaffs_endian.h:34: error: for each function it appears in.)
fs/yaffs2/yaffs_endian.h:37: error: `Y_LOFF_T‘ undeclared (first use in this function)
fs/yaffs2/yaffs_endian.h:38: error: parse error before "vall"
fs/yaffs2/yaffs_endian.h:38: warning: statement with no effect
make[2]: *** [fs/yaffs2/yaffs_checkptrw.o] 错误 1
make[1]: *** [fs/yaffs2] 错误 2
make[1]: *** 正在等待未完成的任务....

对策:看来不能使用最新的yaffs2,因此从另一个内核linux-2.35.7将fs/yaffs2文件夹的内容都复制到linux-2.6.32.2/fs/中

时间: 2024-12-15 06:54:09

移植linux-2.6.32.2到qq2440的相关文章

如何查看linux系统是32位还是64位

1.#uname -a 如果有x86_64就是64位的,没有就是32位的 # uname -a  Linux desktop 2.6.35-23-generic #37-Ubuntu SMP Fri Nov 5 19:17:11 UTC 2010 i686 GNU/Linux 这是32位的  #uname -a  Linux backup 2.6.9-67.ELsmp #1 SMP Wed Nov 7 13:58:04 EST 2007 i686 i686 i386 GNU/Linux  注意:

使用cygwin移植Linux的项目到Windows下之总结(转)

使用cygwin移植Linux的项目到Windows下之总结(转) 原文 http://my.oschina.net/michaelyuanyuan/blog/68615?p=1 一.why 接到一个任务,把公司的某个在Linux下开发的项目(也就是一个程序啦)移植到Windows下,使得其可以在Windows下运行,并且运行的结果当然要是正确的啦,何谓正确,当然就是和Linux运行结果比对,一样就行. 二.难在何处 难就难在如何在Windows下编译通过.假设你在Linux下开发了一个这样的程

在64位linux上编译32位程序

ld指令有一个选项:--oformat output_format,用于指定输出文件的格式.输入文件./kernel/kernel.o等是elf32格式,当前系统是64位,而ld默认生成的文件格式是elf64-x86-64:因此会出现"ld: warning: i386 architecture of input file `./kernel/kernel.o' is incompatible with i386:x86-64 output"这样的提示.之前,将系统从三墩转移到我自己的

为AM335x移植Linux内核主线代码

/********************************************************************** * 为AM335x移植Linux内核主线代码 * 说明: * MariannaZhu对AM335x做Linux内核移植时写的blog,记录一下,也许以后 * 用得到. * * 2016-12-5 深圳 南山平山村 曾剑锋 *******************************************************************

【Linux】查看所使用的Linux系统是32位还是64 位的方法

转自:http://blog.csdn.net/u014455929/article/details/52469658 查看所使用的Linux系统是32位还是64 位的方法 方法一:getconf LONG_BIT # getconf LONG_BIT 1 1 我的Linux是32位!!! 方法二:arch # arch 1 1 显示 i686 就是32位,显示 x86_64 就是64位 方法三:file /bin/ls # file /bin/ls 1 1 方法四:uname -a # una

查看linux机器是32位还是64位的方法

file /sbin/init 或者 file /bin/ls/sbin/init: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.18, stripped 如果显示 64-bit 则为64位: file /sbin/init/sbin/init: ELF 32-bit LSB executable, Intel 80386

在基于or1200处理器的SoC上移植linux

经历了前端的艰苦奋斗.SoC前端设计已经调试完毕,如今直接进入uboot移植   首先cd入u-boot-master 找到子文件夹include下得de2_115.h文件进行改动: (下一步计划:加入flash固化uboot:加入网卡替代串口下载uImage) Cd 进入u_boot_master: 1)      $  make de2_115_config 2)      $  make 3)      生成u_boot文件,然后用or1ksim.cfg进行仿真 生成的u_boot; 得到

查看linux机器是32位还是64位的相关命令

查看linux机器是32位还是64位的方法: 方法一:uname -a 方法二:uname -m 方法三: file /sbin/init   如果显示 64-bit 则为64位:如果显示为32 bit 则为32bit: 方法四:getconf LANG_BIT 方法五:ls / | grep 64   (也就是根目录如果有lib64文件夹,那就是64位) 附: 查看系统版本: cat /etc/redhat-release 查看内核版本:uname -r

Linux系统是32位还是64位查看方法总结

[声明] 本文版权归原作者所有,欢迎转载,转载请注明出处. 原作者:潇湘隐者 出处:http://www.cnblogs.com/kerrycode/ 原文链接:https://www.cnblogs.com/kerrycode/p/3785768.html Linux系统是32位还是64位查看方法总结 方法1:getconf LONG_BIT 查看 如下例子所示: 32位Linux系统显示32, 64位Linux系统显示64.最简单.快捷的方法. [[email protected] ~]#

第一次作业:Linux 2.6.32的进程模型与调度器分析

1.前言 本文分析的是Linux 2.6.32版的进程模型以及调度器分析.在线查看 源码下载 本文主要讨论以下几个问题: 什么是进程?进程是如何产生的?进程都有那些? 在操作系统中,进程是如何被管理以及它们是怎样被调用的? 2.进程模型 2.1进程的概念 在我的理解中,一个程序就相当于一个进程,程序的启动意味着产生了一个新的进程,程序的关闭也就意味着一个进程的消亡. 那么专业定义应该是: 在计算中,进程是正在执行的计算机程序的一个实例. 它包含程序代码及其当前活动. 根据操作系统(OS),一个进