博客首页
注册
建议与交流
排行榜
加入友情链接
推荐
投诉
搜索:
帮助
JordonWu's Blog
jordonwu.cublog.cn
管理博客
发表文章
留言
收藏夹
博客圈
音乐
相册
文章
· ARM ASM
· Embedded-Linux
· Fund
· GUI
· IDE
· Linux
}
· Kernel
· QT2410
· 建筑
首页
关于作者
姓名: 职业: 年龄: 位置: 个性介绍:大部分文章是本人 学习过程中收集于网络上各位 大侠高人的文章,如有侵权请 来信告知,我将会尽快删除。 谢谢!!
||
<<
>>
||
我的分类
文章列表 - QT2410
QT2410入门实践03 ---交叉编译工具(for ARM)及rootfs(for NFS)的制作
===================================================================================================<BR>Building buildroot-20071126.tar.bz2<BR>===================================================================================================<BR>1. Untar buildroot package<BR> $cd /opt<BR> $sudo tar -jxvf buildroot-20071126.tar.bz2 -C ./<BR> $cd /opt/buildroot<BR><BR>2. Modify configure files<BR> 1)inittab<BR> $cd /opt/buildroot/target/generic/target_skeleton/etc/ //this inittab using udev<BR> $modify initab and uncomment ttyS0 as following:<BR> # Put a getty on the serial port<BR> ttyS0::respawn:/sbin/getty -L ttyS0 115200 vt100<BR><BR> $cd /opt/buildroot/target/generic/target_skeleton/etc/init.d <BR> $Add "/bin/sh" to rcS script at the end of file as following:<BR> ......<BR> #add /bin/sh start<BR> echo "QT2410 shell"<BR> /bin/sh<BR> #add /bin/sh end<BR><BR> $cd /opt/buildroot/target/generic/target_busybox_skeleton/etc //this inittab using mdev buildin bu……
查看全文
发表于:2007-12-01 ┆
阅读(827)
┆
评论(2)
QT2410入门实践02 --- PC(宿主机)环境安装及配置
2007/10/21<BR>===================================================================================================<BR>Host OS install and environment build<BR>===================================================================================================<BR>1. Linux host OS: Ubuntu-7.10<BR><BR>2. On linux host, execute command after installed<BR> $sudo apt-get upgrade <BR> $sudo apt-get update<BR><BR>3. Install build-essential - this will install a complete devlopement environment for linux<BR> $sudo apt-get install build-essential libncurses5-dev bison flex texinfo zlib1g-dev gettext autoconf<BR><BR>4. Install nfs<BR> $sudo apt-get install nfs-kernel-server <BR> $edit /etc/exports, add /opt/nfs *(sync,rw) <BR> $sudo /etc/init.d/nfs-kernel-server restart<BR><BR>5. Install tftp<BR> 1) Install tftpd and related packages.<BR> $sudo apt-get install xinetd tftpd tftp<BR> 2) Create /etc/xinetd.d/tftp and put this entry:<BR> ……
查看全文
发表于:2007-12-01 ┆
阅读(347)
┆
评论(1)
QT2410入门实践01--- 学习计划
买的qt2410开发板(http://www.armzone.com/Product.asp?ProId=100)有一年多了,其间也移植了u-boot,linux kernel, busybox(rootfs),基本的东西也可以工作了,但是都是些零散的过程,也没什么记录。最近打算系统的来搞一下这个开发板的东西,计划包含以下内容:<BR>1。PC(宿主主机)开发环境的完整建立和配置<BR>2。ARM Cross toolchain 和 rootfs 的制作,选定buildroot来实现<BR>3。u-boot的移植,基于openmoko的patches<BR>4。linux-2.6.23 kernel的porting<BR>5。GUI(DirectFB和QT) 的移植和开发<BR><BR>目标是自己能写个播放器之类的东西在我的ARM板上运行。在这过程中我会尽量详细的记录移植过程中的细节,给自己日后有个参考。也希望能得到网络各位高人的指点,大家共同进步。<BR><BR>2007/11/29<BR>
查看全文
发表于:2007-11-29 ┆
阅读(423)
┆
评论(1)