您的位置 首页 IOT

在FS2410开发板上移植linux2.6.24开始成功

说是移植,也不太准确,因为linux2.6.24内核已经将s3c2410纳入。在移植的时候只是需要做几个小的改动以及几个注意的地方。一.前言使用的…

说是移植,也不太精确,由于linux2.6.24内核现已将s3c2410归入。在移植的时分仅仅需求做几个小的改动以及几个留意的当地。

一. 前语
运用的内核:linux2.6.24,http://www.kernel.org/pub/linux/kernel/v2.6/
运用的arm穿插编译东西(4.2.1):http://www.codesourcery.com/gnu_toolchains/arm/download.html
环境:VMware中的Ubuntu 7.10

二. 移植
1. 修正MakeFile文件,确认arm渠道以及运用的穿插编译东西:
修正的文件:
linux-2.6.24/Makefile

修正的内容:

#ARCH ?= $(SUBARCH)
ARCH ?= arm
#CROSS_COMPILE ?=
CROSS_COMPILE ?= /usr/local/arm/arm-2007q3/bin/arm-none-linux-gnueabi-

2. 依据开发板修正NAND Flash初始化代码:
修正的文件:
linux-2.6.24/arch/arm/plat-s3c24xx/common-smdk.c
阐明:这一部分的修正与详细的开发板电路有联系

修正的内容:
/* NAND parititon from 2.4.18-swl5 */

static struct mtd_partition smdk_default_nand_part[] = {
[0] = {
.name = “boot”, //= “Boot Agent”,
.size = SZ_256K, //= SZ_16K,
.offset = 0,
},
[1] = {
.name = “kernel”, //= “S3C2410 flash partition 1”,
.offset = SZ_256K, //= 0,
.size = SZ_2M-SZ_256K, //= SZ_2M,
},
[2] = {
.name = “rootfs”, //= “S3C2410 flash partition 2”,
.offset = SZ_2M, //= SZ_4M,
.size = 30 * SZ_1M, //= SZ_4M,
},
[3] = {
.name = “ext-fs1”, //= “S3C2410 flash partition 3”,
.offset = SZ_32M, //= SZ_8M,
.size = SZ_16M, //= SZ_2M,
},
[4] = {
.name = “ext-fs2”, //= “S3C2410 flash partition 4”,
.offset = SZ_32M+SZ_16M, //= SZ_1M * 10,
.size = SZ_16M, //= 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,
}*/
};
参考资料:
yl2.6.8.1供给的内核源代码
linux-2.6.8.1-zzm/drivers/mtd/nand/s3c2410_nand.c

static struct mtd_partition partition_info[] = {
{ name: “boot”,
offset: 0,
size: SZ_256K },
{ name: “kernel”,
offset: SZ_256K,
size: SZ_2M – SZ_256K },
{ name: “rootfs”,
offset: SZ_2M,
size: 30 * SZ_1M },
{ name: “ext-fs1”,
offset: SZ_32M,
size: SZ_16M },
{ name: “ext-fs2”,
offset: SZ_32M + SZ_16M,
size: SZ_16M },
};

3. 增加devfs文件体系支撑
linux2.6.24现已去掉devfs,为了内核支撑devfs以及在发动时并在/sbin/init运转之前能主动挂载/dev为devfs文件体系,修正fs的Kconfig文件。
linux-2.6.24/fs/Kconfig

修正的内容:
找到menu “Pseudo filesystems”
增加如下句子:
config DEVFS_FS
bool “/dev file system support (OBSOLETE)”
depends on EXPERIMENTAL
help
This is support for devfs, a virtual file system (like /proc) which
provides the file system interface to device drivers, normally found
in /dev. Devfs does not depend on major and minor number
allocations. Device drivers register entries in /dev which then
appear automatically, which means that the system administrator does
not have to create character and block special device files in the
/dev directory using the mknod command (or MAKEDEV script) anymore.

This is work in progress. If you want to use this, you *must* read
the material in , especially
the file README there.

Note that devfs no longer manages /dev/pts! If you are using UNIX98
ptys, you will also need to mount the /dev/pts filesystem (devpts).

Note that devfs has been obsoleted by udev,
.
It has been stripped down to a bare minimum and is only provided for
legacy installations that use its naming scheme which is
unfortunately different from the names normal Linux installations
use.

If unsure, say N.

config DEVFS_MOUNT
bool “Automatically mount at boot”
depends on DEVFS_FS
help
This option appears if you have CONFIG_DEVFS_FS enabled. Setting
this to Y will make the kernel automatically mount devfs onto /dev
when the system is booted, before the init thread is started.
You can override this with the “devfs=nomount” boot option.

If unsure, say N.

config DEVFS_DEBUG
bool “Debug devfs”
depends on DEVFS_FS
help
If you say Y here, then the /dev file system code will generate
debugging messages. See the file
for more
details.

If unsure, say N.

4. 编译内核
make menuconfig(这一部分比较费事,要依据自己的需求以及开发板的实际状况设定)
make zImage

5. 修正根文件体系
如不修正根文件体系,发动时会提示“Warning: unable to open an initial console.”的过错信息。修正办法(依据FS2410运用手册收拾):
(1) 将yl2410_demo.cramfs 拷贝到恣意目录下
(2) 在该目录下树立两个文件:
mkdir chang
mkdir guo
(3) 将yl2410_demo.cramfs 挂接到chang 目录(有必要以root 身份登陆体系)
mount chang yl2410_demo.cramfs –o loop
(4) 将chang 目录下的内容紧缩
cd chang
tar –cvf /chang 的上一级目录/1.tar ./
这样将在chang 的上一级目录发生一个1.tar 的包
(5) 将包解压到guo 目录下。
umount chang ;卸载挂接
cd .. ;进入上一级目录
mv 1.tar guo ;
cd guo ;
tar –xvf 1.tar ;将打包的根文件体系的里的内容解压
rm 1.tar

(6)转到dev目录
履行mknod console c 5 1
履行mknod null c 1 3

(7)转到usr目录
用刚编译linux2.6.24内核的相应文件替换掉以下文件
|– ov511.ko #坐落linux-2.6.24/drivers/media/video/目录
|– ov511.o #坐落linux-2.6.24/drivers/media/video/目录
|– sd_mod.ko #坐落linux-2.6.24/drivers/scsi/目录
|– usb-storage.ko #坐落linux-2.6.24/drivers/usb/storage/目录
|– usbvideo.ko #坐落linux-2.6.24/drivers/media/video/usbvideo/目录
|– usbvideo.o #坐落linux-2.6.24/drivers/media/video/usbvideo/目录
`– videodev.o #坐落linux-2.6.24/drivers/media/video/目录

阐明:以上的文件能否生成依据在开端装备的状况决议。

(8)制造cramfs 根文件体系
先将mkcramfs 文件拷贝到guo 地点的目录
在这个目录下运转指令:
mkcramfs guo fs2410.cramfs
运转成功后,会在该目录下生成fs2410.cramfs 根文件体系

6. 下载,烧录,修正发动参数,发动
依据FS2410运用手册下载、烧录;先修正发动参数为:root=1f02 init=/linuxrc console=ttySAC0,115200 devfs=mount display=sam320,主要是将本来的ttyS0改为ttySAC0(这是由于linux内核对串行口的改动);然后发动即可。

三. 跋文
为什么说开始成功?由于在制造根文件体系时运用的是开发板自带的,然后进行了简略的修正。我测验自己运用BusyBox制造,可是总不能成功,总是提示”Failed to execute /linuxrc. Attempting defaults…“的过错,现在还没有处理。

linuxdiyf可真快,没过2天就把这篇文章搞了曩昔,而且还没有保存我的署名权,而且将作者换成了修改,可是最起码你应该标明转载,也不应该将出处标为linuxdiyf。

声明:本文内容来自网络转载或用户投稿,文章版权归原作者和原出处所有。文中观点,不代表本站立场。若有侵权请联系本站删除(kf@86ic.com)https://www.86ic.net/yingyong/iot/275676.html

为您推荐

联系我们

联系我们

在线咨询: QQ交谈

邮箱: kf@86ic.com

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

返回顶部