U-boot中是否存在类似于Linux中的配置文件(在arch / arm / configs / for ARM中)的配置文件。
我的怀疑是,在构建U-boot时,它将CPUDIR(在顶部的Makefile中)作为“arch / arm / cpu / armv7”。我试图理解它将配置视为“arm”和“armv7”。
答案 0 :(得分:1)
我相信include / configs中的头文件是您正在寻找的内容。您需要确定哪个文件用于您的电路板。
来自http://www.stlinux.com/u-boot/modifying:
配置文件
U-Boot的重要配置信息在文件中定义:
func updateSearchResultsForSearchController(searchController: UISearchController) {
if self.searchController?.searchBar.text.lengthOfBytesUsingEncoding(NSUTF32StringEncoding) > 0 {
let searchBarText = self.searchController!.searchBar.text
self.filterContentForSearchText(searchBarText)
// Reload a table with results.
self.searchResultsController?.tableView.reloadData()
}
}
func filterContentForSearchText(searchBarText : String) {
self.filteredFoods = allFoods.filter({(food : Food) -> Bool in
let stringMatch = food.desc.rangeOfString(searchBarText, options: NSStringCompareOptions.CaseInsensitiveSearch)
return (stringMatch != nil)
})
}
例如,Espresso板默认配置文件为:
include/configs/<board>.h
答案 1 :(得分:1)
如果在目录
上看到U-Boot树/ CONFIGS
您将获得电路板默认配置文件。