上一页 1 ··· 80 81 82 83 84 85 86 87 88 ··· 136 下一页
摘要: 设置好工具链的PATH 下载官方内核,覆盖LSP之后,make armada_xp_defconfig 却提示找不到 修改linux的Makefile ARCH ?= arm CROSS_COMPILE ?= arm-marvell-linux-gnueabi- 或者是设置环境变量: export PATH=`pwd`/armv7-marvell-linux-gn... 阅读全文
posted @ 2012-05-10 15:47 katago 阅读(820) 评论(0) 推荐(0)
摘要: SMP是对称多处理。 AMP是指非对称多处理,非对称多处理是指各核的结构并非对称,用处自然有区别,一般来说,指令集可能不一样,但不排除也可以指令集一样。 AMP一图: SMP一图: SMP就是只有跑一个OS,由OS来给各个APP分配CPU core。 阅读全文
posted @ 2012-05-10 14:25 katago 阅读(1511) 评论(0) 推荐(0)
摘要: strace hwclock看到ioctl调用 读取rtc时间 int fd; struct rtc_time rtc_tm; int ret; fd = open("/dev/rtc0", O_RDONLY, 0); // the ioctl command RTC_RD_TIME is used to read the cur... 阅读全文
posted @ 2012-05-10 11:49 katago 阅读(1189) 评论(0) 推荐(0)
摘要: 1:准备png图片; 2:安装netpbm apt-get install netpbm 3:制作 ppm图片 保存一个png图片logo.png,按如下方式操作: #pngtopnm logo.png > linuxlogo.pnm # pnmquant 224 linuxlogo.pnm > linuxlogo224.pnm # pnmtoplainpnm linuxlogo22... 阅读全文
posted @ 2012-05-09 10:58 katago 阅读(669) 评论(0) 推荐(0)
摘要: log界面时,左下角的“复制/改名时终止”不要勾 阅读全文
posted @ 2012-05-07 09:37 katago 阅读(1336) 评论(0) 推荐(0)
摘要: http://www.starnet.com/xwin32kb/Couldnt_get_an_RGB_Double_buffered_Visual When running an OpenGL application, the app may fail with the following error "Error: couldn't get an RGB, Double-buffered v... 阅读全文
posted @ 2012-05-03 16:49 katago 阅读(1671) 评论(0) 推荐(0)
摘要: sourceinsight3.50.0051的更新日志中找到如下更新日志: Fix: Sometimes files were said to be modified outside of SI, but they were not. This most likely happened on network drives. Under some conditions, the Windows d... 阅读全文
posted @ 2012-05-03 11:06 katago 阅读(1215) 评论(0) 推荐(0)
摘要: http://www.qtcentre.org/wiki/index.php?title=Version_numbering_using_QMake 如果是日期和时间的话,为什么不直接在代码中使用 __DATE__ __TIME__ 的宏? 如果是SVN版本号的话,为什么不直接使用 svn:keywords 的 $Rev$ http://hi.baidu.com/cyrist/... 阅读全文
posted @ 2012-05-02 15:05 katago 阅读(245) 评论(0) 推荐(0)
摘要: http://www.ibm.com/developerworks/cn/linux/l-assembly/ 阅读全文
posted @ 2012-04-25 19:07 katago 阅读(160) 评论(0) 推荐(0)
摘要: 转自:http://blog.csdn.net/high_high/article/details/7385585 这里要编译的工程包含一个库和一个可执行文件。可执行文件依赖于库,所以要先编译库,编译后库放在lib目录里面,可执行文件放在bin目录里面。 目录结构如下: [plain] view plaincopy . ├── app │ ├── app.pr... 阅读全文
posted @ 2012-04-25 19:04 katago 阅读(465) 评论(0) 推荐(0)
上一页 1 ··· 80 81 82 83 84 85 86 87 88 ··· 136 下一页