自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

走南闯北的专栏

--及时同步、及时刷新,每天进步一点点--

  • 博客(19)
  • 资源 (26)
  • 收藏
  • 关注

原创 u-boot1.1.6移植之一(编译测试)

#!/bin/bashprintBlue(){  echo -en /E[47;34m"/033[1m$1/033[0m"   # 蓝色}printRed(){ echo -en /E[47;31m"/033[1m$1/033[0m/n"   # 红色}myroot="sanEmbeded/u-boot-1.1.6" #Makefil

2009-11-30 22:50:00 631

原创 linux patch的使用实例

一、实例test@test-desktop:~/Desktop/patchtest$ cat /home/test/Desktop/patch.txt diff -Nur patchtest/san1/test/hello.txt patchtest/san2/test/hello.txt--- patchtest/san1/test/hello.txt    2009

2009-11-28 22:38:00 1252

原创 linux-2.6.30.4移植至2440开发板经验谈

 一、下载linux-2.6.30.4源码,并解压ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.30.4.tar.gz tar zxvf linux-2.6.30.4.tar.gz 并且下载支持ARM的补丁文件,给标准内核打上ARM补丁。 ftp://ftp.arm.linux.org.uk/pub/lin

2009-11-22 19:14:00 2871 1

原创 Busybox编译及其yaffs2文件系制作

 一、Busybox编译(版本busybox-1.13.0)  1、在环境变量中设置交叉编译器 的路径(版本cross-4.3.3)2、make menuconfig设置CROSS COMPILE为arm-linux- 3、make install即可在_install目录下生成bin sbin usr(bin,sbin)及其linuxrc文件 (该文件链接到/bin/

2009-11-21 12:01:00 2084

原创 busybox编译心得

 今天在Ubuntu9.04上编译busybox,执行make menuconfig后发现了如下错误scripts/kconfig/lxdialog/checklist.c:283: warning: implicit declaration of function ‘delwin’ scripts/kconfig/lxdialog/checklist.c:287: error:

2009-11-21 09:59:00 839

原创 VMware使用串口的方法

 从vm->setting把串口加进来

2009-11-20 23:23:00 921

原创 sed取Java源码中的第一个大括号的行数,并在其后添加内容

1 public class HelloWorld  {     2     public static void main(String args[]) {   3         System.out.println("Hello World!")   4  }    sed -n -e /public class/p -e /{/=

2009-11-19 23:04:00 1482

转载 [转]构造 c++ IDE(linux)

本文转自:http://www.cnblogs.com/blueoceanli/archive/2009/04/27/1444491.html (修改~/.vimrc,没有创建之)set encoding=utf-8syntax enablesyntax onfiletype on set tabstop=4set softtabstop=4set shiftw

2009-11-09 20:52:00 1257

原创 linux Socket编程入门

以前已经接触Windows下的Socket编程,最近也尝试着再linux下使用Socket编程,下面是在网上找的例子(已经测试过)  tcp_server.c: #include #include #include #include #include #include #include #define SERVER_PORT 20000#de

2009-11-08 11:17:00 1715 2

原创 列出Linux源码下所有Makefile的方法

 一、要求:1、能够显示出Makefile的总数2、能显示一级目录下的Makefile总数、Makefile列表及其Makefile的内容3、能将上述内容写入相应的文件 二、实例 rm -rf ~/Desktop/linux_Makefile/*for i in `find . -maxdepth 1 -type d` #仅仅是当前目录,所以请将本

2009-11-08 09:39:00 1206

原创 Linux Diff命令

 diff -Nur [old source] [new source] diff -Nur linux-2.6.30/Makefile linux-2.6.31.5/Makefile--- linux-2.6.30/Makefile       2009-06-10 11:05:27.000000000 +0800+++ linux-2.6.31.5/Makefile    

2009-11-07 10:52:00 3140 1

原创 linux获取文件的路径名及其文件名的方法

1、简单测试实例 for i in `find . -type f -name "*.c"`do  echo $i  basename $i    获取*.c文件名  dirname $i        获取*.c对应的目录名done2、实际应用diff Linux源码,并将有不一样的源码整理在一起,要求:文件名以new和old区分。(1)、简单测试

2009-11-07 09:39:00 6561 2

原创 Busybox及其嵌入式系统的制作

 1、busybox作用2、busybox编译项说明及编译3、向编译后的busybox中加入内容,完善文件系统4、使用工具制作文件系统

2009-11-07 09:01:00 740

原创 linux设置IP路由等网络命令汇总

使用linux命令设置IP路由等。。。

2009-11-05 20:02:00 692

原创 JNI官方文档

 http://java.sun.com/javase/6/docs/technotes/guides/jni/spec/jniTOC.html Java Native Interface Specification—Contents 1. Introduction Java Native Interface OverviewBackground JDK 1.0 Nativ

2009-11-04 22:49:00 2437

原创 Android Makefile的分类

 虽然Android Makefile总共有一千多个,但按照产生的目标文件的类型来分,主要有以下五种类型:1、目标文件为静态库2、目标文件为动态库3、目标文件为Jar压缩包4、目标文件为可执行文件5、目标文件为APK 

2009-11-04 22:24:00 971

原创 Android源码Makefile分布统计

1、执行如下指令可以统计Android源码目录下的 所有的mk文件的总数及其内容(这是分析源码的很好的工具)for i in `find . -maxdepth 1 -type d`do echo $i mkdir -p ~/Desktop/android_mk/$i find $i -type f -name "*.mk" -print | echo -e ""$i"

2009-11-04 21:42:00 1773

原创 Android系统移植准备

1、VIVI-bootloader编译2、linux 内核编译3、Android文件系统的提取

2009-11-03 21:26:00 774

原创 Android模块化编译

1、我们平常在编译Android源码,有时并不需要编译整个Android源码,而只需要编译模个模块,这是可以使用mmm工具来编译。其使用方法是:mmm ,如编译frameworks下的所有文件,则可以这样子:. build/envsetup.sh && choosecombo 1 1 2 3 &&export ANDROID_JAVA_HOME=$JAVA_HOME && mmm fr

2009-11-03 20:58:00 2729

OllyDBG StuPE工具

Win32 OllyDBG StuPE工具,OllyDbg是一种具有可视化界面的32位汇编分析调试器,是一个新的动态追踪工具,将IDA与SoftICE结合起来的思想,Ring3级调试器,非常容易上手,己代替SoftICE成为当今最为流行的调试解密工具了. 看雪学院也有下载:http://www.pediy.com/tools/Debuggers.htm

2011-08-01

VisualSVN for Visual Studio2008

VisualSVN for Visual Studio2008

2011-02-16

ViEmu2.5 Crack

ViEmu2.5 Crack,在VS2008中测试通过。

2011-02-15

ViEmu/VS: vi-vim editing for Microsoft Visual Studio

ViEmu/VS: vi-vim editing for Microsoft Visual Studio ViEmu for Visual Studio is the most popular and mature product of the ViEmu line. Many hundreds of developers use it all day, every day for all their development tasks. Supporting all basic and many advanced features of vi/vim inside Visual Studio, it's a boost for your development productivity. ViEmu for Visual Studio "Classic" is compatible with Visual Studio 2008, Visual Studio 2005, Visual Studio .NET 2003, and Visual Studio .NET 2002. ViEmu for Visual Studio 2010 works with the latest VS 2010 environment. Learn more about ViEmu for Visual Studio: See the ViEmu/VS faq Read the full documentation View more screenshots Read about the features Compatible with other 3rd party tools Browse the support forums Access older versions that will work with older licenses

2010-12-12

手把手教你把Vim改装成一个IDE编程环境(图文)

手把手教你把Vim改装成一个IDE编程环境(图文)

2010-11-02

XP-RNDIS-Ethernet-Gadget驱动.7z

XP-RNDIS-Ethernet-Gadget驱动.7z

2010-10-10

Pro Git中文版电子书

介绍Git的一本好书,从中会很快掌握git分布式版本管控的技能。

2010-10-09

ubuntu-linux-0.11

找了很久,终于找到一个跟我一样想在现代的Linux上编译linux-0.11的老兄了,感谢那位老兄分享,附件就是源码和patch。

2010-07-12

Thinking+in+C++.pdf

Thinking+in+C++.pdf,Thinking+in+C++.pdf

2010-06-23

LXR+mysql+glimpse+apache源码浏览平台搭建心得(二)lxr.conf

LXR+mysql+glimpse+apache源码浏览平台搭建心得(二)lxr.conf

2010-06-09

LXR+mysql+glimpse+apache源码浏览平台搭建心得(一)

LXR+mysql+glimpse+apache源码浏览平台搭建心得(一)

2010-06-09

linux JNI实例及其JNI编程模板

linux JNI实例及其JNI编程模板

2010-05-24

《使用开源软件-自己动手写操作系统》pdf

《使用开源软件-自己动手写操作系统》pdf

2010-05-23

MuPDF号称史上最快pdf浏览器

MuPDF号称史上最快pdf浏览器,由于其使用纯C语言编写,可移植性极好。

2010-04-14

使用ADS自带armcc,armlink,armelf编写Makefile测试uCOS-II

使用ADS自带armcc,armlink,armelf编写Makefile测试uCOS-II

2010-04-12

DNW for linux

linux平台下的DNW,该压缩包包含dnw程序源码及其secbulk USB驱动程序。

2010-04-08

uCOS-IIV286-ARM7TDMI

刚从网上下载了uCOS-IIV2.86的源码,并且已经将其移植到了S3C44B0的处理器上。

2010-04-05

ARM7TDMI-uCOS-II移植(修正版)

ARM7TDMI-uCOS-II移植(修正版),修正了其中串口显示乱码的问题。

2010-04-05

ARM7TDMI-uCOS-II移植

这是ARM7TDMI-uCOS-II移植成功的例子

2010-04-05

Grub硬盘引导安装Linux相关文件

其中包含grub.exe,grldr,menu.lst,boot.ini硬盘安装必备的文件

2010-01-22

Java_Native_Interface_Specification.CHM

Java_Native_Interface_Specification.CHM

2009-12-28

Java Native Interface Programmers Guide and Specification(Exp)

Java Native Interface Programmers Guide and Specification(Exp)

2009-12-28

git tutor入门文档

一份非常适合Git入门的文档,值得参考。

2009-12-26

GNU make中文手册

这是一份有关makefile编写的不错的文档,值得参考!

2009-12-26

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除