摘要:
git://git.yoctoproject.org/psplashTry these steps:1. Set the cross compile environment properly, based on the toolchain you are using. This means setting variables CC, LD, AS, OBJCOPY, etc.2. Run this command:# autogen.sh3. Assuming that you'd like to: keep psplash in "/usr/bin" of tar 阅读全文
摘要:
sudo add-apt-repository ppa:rabbitvcs/ppasudo apt-get updatesudo apt-get install rabbitvcs-core rabbitvcs-nautilus3 rabbitvcs-clinautilus -q 阅读全文
摘要:
安装 创建 SVN 仓库 许多位置都可以放置 Subversion 文件仓库,其中两个最常用的是:/usr/local/svn 以及 /home/svn。为了在下面的描述中简单明了,我们假设您的 Subversion 文件仓库放在 /home/svn,并且你的项目名称是简单的“myproject”。 阅读全文
摘要:
setenv bootargs root=/dev/nfs nfsroot=192.168.1.20:/home/nfsroot,nolock,rsize=1024,wsize=1024 ip=dhcp console=ttyO2,115200n8 rw noinitrd 阅读全文
摘要:
If system is Ubuntu 11.10sudo apt-get install build-essential cdbs fakeroot dh-make debhelper debconf libstdc++6 dkms libqtgui4 wget execstack libelfg0 dh-modaliases linux-headers-generic1. http://ati.amd.com download drivers2. sudo ./amd-driver-installer-12-1-x86.x86_64.run --buildpkg Ubuntu/oneiri 阅读全文
摘要:
(1) 在 VM -> settings -> options ->shared folders 中设置 E 盘为共享(2) 安装 VMware Tool(3) 用如下命令挂载共享文件mount -t vmhgfs .host:/E /mnt/hgfs将 WINDOWS 中的 E 盘挂载至 /mnt/hgfs 目录 阅读全文
摘要:
#define REG 0x8000000pr_info("REG is %X\n", __raw_readl(ioremap(REG, 4)));ioremap : 转换一个物理地址至虚拟地址, 4 表示一个32位的寄存器 阅读全文
摘要:
下载MPlayerhttp://www.mplayerhq.hu/design7/dload.html编译环境系统 : ubuntu 11.04交叉编译器版本 : Sourcery G++ Lite 2009q1-203MPlayer版本 :MPlayer-1.0rc4ARM型号 : Cortex-A8编译指令./configure --prefix=/opt/mplayer --host-cc=gcc --cc=arm-none-linux-gnueabi-gcc --target=arm-linux --enable-static --disable-mencoder --disabl.. 阅读全文
摘要:
下载地址ftp://ftp.gtk.org/pub/glib/版本与环境glib-2.25.8.tar.gz / ubuntu 11.04编译过程# $WORK_DIR 为安装路径CC=arm-none-linux-gnueabi-gcc \./configure --build=i686-linux --host=arm-none-linux-gnueabi --prefix=$WORK_DIR/usr \glib_cv_stack_grows=no \glib_cv_uscore=no \ac_cv_func_posix_getpwuid_r=yes \ac_cv_func_posix_g 阅读全文
摘要:
下载地址http://www.zlib.net# 设置交叉编译工具export CC=arm-none-linux-gnueabi-gcc# 配置,编译,安装./configure --shared --prefix=$WORK_DIR/zlibmakemake install 阅读全文