发布时间:2015-12-12 10:51:43
include/license.h: tools/bin2header COPYING cat COPYING | gzip -9 -c | ./tools/bin2header license_gzip > include/license.h#########################################################################unconfig: @rm -f $(obj)include/config.h $(obj)include/config.mk .........【阅读全文】
发布时间:2015-10-22 10:53:39
u-boot版本为2014.04。要使用这功能,首先不能定义CONFIG_AUTOBOOT_KEYED,因为mail.c中有:static int abortboot(int bootdelay){#ifdef CONFIG_AUTOBOOT_KEYED return abortboot_keyed(bootdelay);#else return abortboot_normal(bootdelay);#endif}abortboot_normal才是.........【阅读全文】
发布时间:2015-09-28 00:59:49
u-boot-2014.07是没有使用kconfig 系统的最后一个uboot版本。从2014.10 开始启动kbuild进行代码配置,并加入了DM(驱动模型)支持。
本文只分析gpio的相关代码的演变。
在uboot的git网页中点击u-boot 2014.07分支,搜索gpio,在搜索结果中看到:
......【阅读全文】
发布时间:2015-09-27 20:35:22
参考另一块板子s5p_goni很容易就能添加MMC功能,
首先复制goni.c中的int board_mmc_init(bd_t *bis)函数到smdkv210.c中,
在smdkv210.h中添加MMC的相关宏:
/* MMC */
#define CONFIG_GENERIC_MMC
#define CONFIG_MMC
#define CONFIG_SDHCI
#define CONFIG_S5P_SDHCI
......【阅读全文】