简约而不简单。
发布时间:2013-05-30 16:21:27
在ubuntu下编译linux-2.6.29时,会出现 *** Unable to find the ncurses libraries or the *** required header files. *** 'make menuconfig' requires the ncurses libraries. *** *** Install ncurses (ncurses-devel) and try again. *** 解决办法:# sudo apt-get i.........【阅读全文】
发布时间:2013-04-25 23:16:46
1.根据smdk6400的文件结构复制一份smdk6410的文件。修改相应的文件名称和文件内容。2.依照Makefile中smdk6400的格式改写一个smdk6410的makefile3.Make后出现问题:undefined reference to `get_PCLK‘等类似问题。应在该目录下的Makefile文件中添加相应的编译:COBJS-y += timer.o init.o speed.o cpu_init.o4.完成后可.........【阅读全文】
发布时间:2013-04-15 23:31:28
drivers/net/phy/ip17xx.c:1365: error: unknown field 'aneg_done' specified in initializer修改/openwrt-dreambox/target/linux/ar71xx/config-2.6.32,注释掉第131行 131 CONFIG_IP17XX_PHY=y,就不会有LZ的错误了,但是还要注释掉.........【阅读全文】
发布时间:2013-04-15 23:30:58
1.uboot的页表位置:lowlevel_init.S文件的最后:、 /* form a first-level section entry */.macro FL_SECTION_ENTRY base,ap,d,c,b.word (\base << 20) | (\ap << 10) | \ (\d << 5) | (1<<4) | (\c << 3) | (\b << 2) | (1<<1).endm //以上是宏定义.section .mmudata,.........【阅读全文】