上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 77 下一页
摘要: Printenv打印环境变量。Uboot> printenvbaudrate=115200ipaddr=192.168.1.1ethaddr=12:34:56:78:9A:BCserverip=192.168.1.5Environment size: 80/8188 bytesSetenv设置新的变量Uboot> setenv myboard AT91RM9200DKUboot> printenvbaudrate=115200ipaddr=192.168.1.1ethaddr=12:34:56:78:9A:BCserverip=192.168.1.5myboard=AT91R 阅读全文
posted @ 2012-07-07 23:33 ahuo 阅读(229) 评论(0) 推荐(0) 编辑
摘要: ram启动1.解压uclinux_ram.bin.gz 得 uclinux_ram.bintftp 然后 go 0xc0080002.tftp 0x0c208000 ,镜像被自动下载到RAM中的0x0c208000位置,然后执行bootm 0x0c208000 命令uclinux_rom.bin文件放在RAM的 0x0c208000 位置处,是因为uclinux_rom.bin是压缩文件 ,在用bootm启动时需要将原始文件解压缩到0x0c008000 位置(此地址在编译时就确定了),然后跳转到这里开始执行。所以必须使得uclinux_rom.bin的存放位置避开程序解压缩后的存储区域,否则二 阅读全文
posted @ 2012-07-07 12:42 ahuo 阅读(232) 评论(0) 推荐(0) 编辑
摘要: 在linux-2.4.x/include/asm-armnommu/arch-s3c44b0/中system.h中armch_rest添加cpu_reset(0x800000); 阅读全文
posted @ 2012-07-07 12:23 ahuo 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 发现系统网络不能用,proc下是空的后来发现init没有编译到系统里menuconfig——》user——》core app——》init修改rc文件加入网关 :route add default gw 192.168.1.1 eth0就有下面的执行过程了Shell invoked to run file: /etc/rcCommand: hostname SamsungCommand: /bin/expand /etc/ramfs.img /dev/ram0Command: /bin/expand /etc/ramfs2048.img /dev/ram1Command: mount -t p 阅读全文
posted @ 2012-07-07 11:28 ahuo 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 今天由于要用到静态链接库,所以就学习了一下相关知识,总结如下:静态链接库(一般命名为libxxx.a)就是很多.o文件的集合,在你的项目中如果有一个子模快,这个子模块只是给总控模块提供一个函数接口,那么你就可以考虑把这个子模快编译成静态链接库libxxx.a,然后在总控模块中编译的时候,只需-L包含... 阅读全文
posted @ 2012-07-05 17:15 ahuo 阅读(1282) 评论(0) 推荐(0) 编辑
摘要: vmware-toolbox-cmd timesync enablesudo /etc/init.d/vmware-tools restart 阅读全文
posted @ 2012-07-02 18:01 ahuo 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 安装sudo apt-get install tftp-hpa tftpd-pha openbsd-inetd配置# /etc/default/tftpd-hpaTFTP_USERNAME="tftp"TFTP_DIRECTORY="/tftpboot"TFTP_ADDRESS="0.0.0.0:69"TFTP_OPTIONS="-l -c -s /tftpboot"验证ps aux |grep tftp重启sudo /etc/init.d/tftpd-hpa restart 阅读全文
posted @ 2012-07-01 18:37 ahuo 阅读(379) 评论(0) 推荐(0) 编辑
摘要: 编译 gcc -g test.c -o test 启动 gdb test 1:查看代码 (gdb) list 行号查看指定行号附近的代码。(gdb) search KeyWord查找当前文件下一个KeyWord(gdb) reverse-search KeyWord查找当前文件上一个KeyWord 阅读全文
posted @ 2012-06-30 14:43 ahuo 阅读(384) 评论(0) 推荐(0) 编辑
摘要: 字符串转数字1.CRT函数ASCIIUNICODETCHARVS2005intatoi_wtoi_tstoi_ttoi_atoi_l_wtoi_llongatol_wtol_tstoi_ttoi_atoi_l_wtoi_l__int64_atoi64_wtoi64_tstoi64_ttoi64_atoi64_l_wtoi64_lfloat_atoflt_atoflt_ldoubleatof_wtof_tstof_ttof_atof_l_wtof_l_atodbl_atodbl_llong double_atoldbl_atoldbl_l2.使用sscanf3.Windows SDK:<s 阅读全文
posted @ 2012-06-29 17:31 ahuo 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: Windows XP _WIN32_WINNT>=0x0501Windows 2000 _WIN32_WINNT>=0x0500Windows NT 4.0 _WIN32_WINNT>=0x0400Windows Me _WIN32_WINDOWS=0x0490Windows 98 _WIN32_WINDOWS>=0x0410Internet Explorer 6.0 _WIN32_IE>=0x0600Internet Explorer 5.01, 5.5 _WIN32_IE>=0x0501Internet Explorer 5.0, 5.0a, 5.0b 阅读全文
posted @ 2012-06-28 15:39 ahuo 阅读(529) 评论(0) 推荐(0) 编辑
摘要: top 动态显示进程按”P”键 按CPU使用时间排序按”M”键 按内存使用多少排序按”T”键 按执行时间多少排序按”u”键 监视特定用户按”K”键 删除进程top -d 10 指定更新时间lsof -p 查看进程打开的文件jobs 命令查看后台作业ubuntu结束进程方法1、打开终端2、敲 ps -ef 查出进程的编号(就是PID那列)3、敲 kill PID (如果PID是123456,则kill 123456) 阅读全文
posted @ 2012-06-27 14:24 ahuo 阅读(300) 评论(0) 推荐(0) 编辑
摘要: 1.必须在vmware中系统的选项卡里选择安装vmware tools2.然后在系统的光驱里会出现一张VMware tools的光盘3.进入Ubuntu系统4.把文件从光盘上拷贝到本地(名字记不到了,自己用tab补全。)cd /media/VMware toolscp Vmware_tools.tar.gz ~cd ~tar -zxvf vmware_tools.tar.gz5.完成上面4步就已经把vmware tools解压好了。6.现在我们开始安装,安装也非常简单。cd ./vm ./vmware-tools-distrib/sudo ./vmware-tools-install.pl7. 阅读全文
posted @ 2012-06-27 11:43 ahuo 阅读(207) 评论(0) 推荐(0) 编辑
摘要: http://files.cnblogs.com/ahuo/tftpd32.rar 阅读全文
posted @ 2012-06-24 21:09 ahuo 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 由于在windows下默认是gb编码,而我的vim默认是utf-8(gedit默认也是utf-8),所以打开会成乱码。修改了一下配置文件,使vi支持gb编码就好了。$vi~/.vimrclet &termencoding=&encodingset fileencodings=utf-8,gbk$:wqgedit运行gconf-editor,在左边的树中选择apps->gedit-2->preferences->encodings修改auto_detected的值,增加GB2312, 并且记得将GB2312 的值移到ISO-8859-15上面 VIM 中可供用户 阅读全文
posted @ 2012-06-24 16:39 ahuo 阅读(1709) 评论(0) 推荐(0) 编辑
摘要: git ls-files -d | xargs -i git checkout {} 阅读全文
posted @ 2012-06-23 23:59 ahuo 阅读(249) 评论(0) 推荐(0) 编辑
上一页 1 ··· 35 36 37 38 39 40 41 42 43 ··· 77 下一页