TI论坛
直播中

汤玉荣

7年用户 183经验值
私信 关注
[问答]

请教关于DM385 IPNC-RDK-CSK-3.9.1-Linux-x86 Uboot编译问题

现在公司做了一个DM385的板子,由于上面没有SD接口,只有串口,现在板子上电后串口一直打印ccccccc,系统用的是最新的ubuntu16.04,,64位,软件版本使用的是IPNC-RDK-CSK-3.9.1-Linux-x86,使用命令make ubootimg可以正常编译,但是使用make ubootopti命令后,系统报如下的错误,导致编译没有完成

root@bhb:/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk# make ubootopti
make ubootclean
make[1]: Entering directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk'
make ubootbuild MAKE_TARGET=distclean
make[2]: Entering directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk'
make -C/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk/../ti_tools/ipnc_psp_arago/u-boot ARCH=ARM
CROSS_COMPILE=/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk/../ti_tools/linux_devkit/gcc-linaro-5.3-2016.02-
x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- distclean
make[3]: Entering directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ti_tools/ipnc_psp_arago/u-boot'
CLEAN scripts/basic
CLEAN scripts/kconfig
CLEAN include/config include/generated
CLEAN .config .config.old include/autoconf.mk include/autoconf.mk.dep include/config.h
make[3]: Leaving directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ti_tools/ipnc_psp_arago/u-boot'
make[2]: Leaving directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk'
make[1]: Leaving directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk'
make ubootbuild MAKE_TARGET=dm38x_ipnc_opti_nand
make[1]: Entering directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk'
make -C/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk/../ti_tools/ipnc_psp_arago/u-boot ARCH=arm
CROSS_COMPILE=/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk/../ti_tools/linux_devkit/gcc-linaro-5.3-2016.02-
x86_64_arm-linux-gnueabihf/bin/arm-linux-gnueabihf- dm38x_ipnc_opti_nand
make[2]: Entering directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ti_tools/ipnc_psp_arago/u-boot'
HOSTCC scripts/basic/fixdep
HOSTCC scripts/kconfig/conf.o
SHIPPED scripts/kconfig/zconf.tab.c
SHIPPED scripts/kconfig/zconf.lex.c
SHIPPED scripts/kconfig/zconf.hash.c
HOSTCC scripts/kconfig/zconf.tab.o
HOSTLD scripts/kconfig/conf
scripts/kconfig/conf --silentoldconfig Kconfig
***
*** Configuration file ".config" not found!
***
*** Please run some configurator (e.g. "make oldconfig" or
*** "make menuconfig" or "make xconfig").
***
scripts/kconfig/Makefile:46: recipe for target 'silentoldconfig' failed
make[4]: *** [silentoldconfig] Error 1
Makefile:477: recipe for target 'silentoldconfig' failed
make[3]: *** [silentoldconfig] Error 2
make[2]: *** No rule to make target 'dm38x_ipnc_opti_nand'。 停止。
make[2]: Leaving directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ti_tools/ipnc_psp_arago/u-boot'
Makefile:171: recipe for target 'ubootbuild' failed
make[1]: *** [ubootbuild] Error 2
make[1]: Leaving directory '/home/bhb/ipnc_rdk/ipnc_rdk-3.9.1/Source/ipnc_rdk'
Makefile:181: recipe for target 'ubootopti' failed
make: *** [ubootopti] Error 2

麻烦帮忙看一下,谢谢。

回帖(9)

葛睿洁

2018-7-25 08:28:45
你好;
因为在系统里面没有找到对应的  .config 配置文件
举报

葛睿洁

2018-7-25 08:38:47
当编译 ubootimg 使用的.config文件是
ipnc_psp_arago/u-boot/configs/dm38x_csk_sd_defconfig
当编译 ubootopti 使用的 .config 文件是 dm38x_ipnc_opti_nand
在 uboot 里面没有这个文件,自然就会报错,找不到 .config 文件了
举报

汤玉荣

2018-7-25 08:49:13
引用: Greatwayer 发表于 2018-7-25 08:38
当编译 ubootimg 使用的.config文件是
ipnc_psp_arago/u-boot/configs/dm38x_csk_sd_defconfig
当编译 ubootopti 使用的 .config 文件是 dm38x_ipnc_opti_nand

您好,谢谢您的回复,还想再请问一下,如何我要编译支持串口烧录的第一阶段的uboot,该使用什么命令?是否是使用make ubootopti来编译生成uboot-min-uart,我看了makefile文件,这个命令是makefile里面提供的,不知道为什么对应的configs文件夹里面没有提供对应的_defconfig文件,导致编译错误。
举报

葛睿洁

2018-7-25 09:08:39
引用: tozhyan 发表于 2018-7-25 08:49
您好,谢谢您的回复,还想再请问一下,如何我要编译支持串口烧录的第一阶段的uboot,该使用什么命令?是否是使用make ubootopti来编译生成uboot-min-uart,我看了makefile文件,这个命令是makefile里面提供的,不知道为什么对应的configs文件夹里面没有提供对应的_defconfig文件,导致编译错误。 ...

默认编译就是 sd 卡模式,会编译出 MLO 和 uboot.bin ; 可以直接使用;
举报

更多回帖

发帖
×
20
完善资料,
赚取积分