When i am cross compile u-boot code in ubuntu and gives command as follow
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- distclean
error is:
System not configured -see readme Error[1]
What is solution for this?
thank you.
hardik gajjar
When i am cross compile u-boot code in ubuntu and gives command as follow
make ARCH=arm CROSS_COMPILE=arm-none-linux-gnueabi- distclean
error is:
System not configured -see readme Error[1]
What is solution for this?
thank you.
hardik gajjar
要编译 U-Boot,最简单的方法是导出 CROSS_COMPILE 变量:
$ export CROSS_COMPILE=/directory/.../arm-none-linux-gnueabi-
然后您必须选择板配置,例如:
$ make lpc4350-board_config
然后你可以编译:
$ make
distclean目标用于通过选择任何板/设备特定配置来撤消/清除对本地工作目录所做的任何更改。
该错误System not configured -see readme Error[1]表明当前的 u-boot 工作目录尚未为任何设备/板配置,因此此时distclean目标make是冗余的。