ubuntu虽然能正常安装,但是build时会出现闪退情况,闪退后一切归零,没啥错误提示,改用centos来安装petalinux。

0.环境

vmware pro 14,centos 7.3

petalinux 2017.2

1.petalinux安装环境配置

除了python,其他都用yum直接安装即可,安装UG1144里的所有库

python安装过程:

wget https://www.python.org/ftp/python/3.4.1/Python-3.4.1.tgz
tar xf Python-3.4.1.tgz
cd Python-3.4.1
./configure
make
make install

安装到/usr/local/bin/python3目录了,在/usr/bin/中创建指向该位置的符号连接

ln -s /usr/local/bin/python3 /usr/bin/python3

2.安装及配置

[root@localhost opt]# chown liuwanpeng:liuwanpeng -R /opt
[root@localhost opt]# ls / -lh
总用量 28K
......
drwxr-xr-x. 3 root root 18 12月 4 14:01 mnt
drwxr-xr-x. 4 liuwanpeng liuwanpeng 27 12月 4 14:40 opt
dr-xr-xr-x. 223 root root 0 12月 4 16:15 proc
......
[root@localhost opt]# su liuwanpeng
[liuwanpeng@localhost ~]$ ./petalinux-v2017.2-final-installer.run /opt/pkg/petalinux
INFO: Checking installer checksum...
INFO: Extracting PetaLinux installer...
INFO: Installing PetaLinux...
INFO: Checking PetaLinux installer integrity...
INFO: Extracting Installation files... LICENSE AGREEMENTS PetaLinux SDK contains software from a number of sources. Please review
the following licenses and indicate your acceptance of each to continue. You do not have to accept the licenses, however if you do not then you may
not use PetaLinux SDK. Use PgUp/PgDn to navigate the license viewer, and press 'q' to close Press Enter to display the license agreements
Do you accept Xilinx End User License Agreement? [y/N] > y
Do you accept Webtalk Terms and Conditions? [y/N] > y
Do you accept Third Party End User License Agreement? [y/N] > y
INFO: Checking installation environment requirements...
INFO: Checking free disk space
INFO: Checking installed tools
INFO: Checking installed development libraries
INFO: Checking network and other services
WARNING: No tftp server found - please refer to "PetaLinux SDK Installation Guide" for its impact and solution
INFO: Installing PetaLinux SDK to "/opt/pkg/petalinux/."
INFO: Installing PetaLinux zynqMP Yocto SDK to "/opt/pkg/petalinux/./components/yocto/source/aarch64"...
PetaLinux Extensible SDK installer version 2017.2
=================================================
You are about to install the SDK to "/opt/pkg/petalinux/components/yocto/source/aarch64". Proceed[Y/n]? Y
Extracting SDK.............................................done
Setting it up...
Extracting buildtools...
done
SDK has been successfully set up and is ready to be used.
Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
$ . /opt/pkg/petalinux/components/yocto/source/aarch64/environment-setup-aarch64-xilinx-linux
INFO: PetaLinux Yocto SDK for zynqMP has been successfully installed.
INFO: Installing PetaLinux zynq Yocto SDK to "/opt/pkg/petalinux/./components/yocto/source/arm"...
PetaLinux Extensible SDK installer version 2017.2
=================================================
You are about to install the SDK to "/opt/pkg/petalinux/components/yocto/source/arm". Proceed[Y/n]? Y
Extracting SDK.........................................done
Setting it up...
Extracting buildtools...
done
SDK has been successfully set up and is ready to be used.
Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
$ . /opt/pkg/petalinux/components/yocto/source/arm/environment-setup-cortexa9hf-neon-xilinx-linux-gnueabi
INFO: PetaLinux Yocto SDK for zynq has been successfully installed.
INFO: Installing PetaLinux microblaze (Full) Yocto SDK to "/opt/pkg/petalinux/./components/yocto/source/microblaze_full"...
PetaLinux Extensible SDK installer version 2017.2
=================================================
You are about to install the SDK to "/opt/pkg/petalinux/components/yocto/source/microblaze_full". Proceed[Y/n]? Y
Extracting SDK.............................done
Setting it up...
Extracting buildtools...
done
SDK has been successfully set up and is ready to be used.
Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
$ . /opt/pkg/petalinux/components/yocto/source/microblaze_full/environment-setup-microblazeel-v10.0-bs-cmp-mh-div-xilinx-linux
INFO: Installing PetaLinux microblaze (Lite) Yocto SDK to "/opt/pkg/petalinux/./components/yocto/source/microblaze_lite"...
PetaLinux Extensible SDK installer version 2017.2
=================================================
You are about to install the SDK to "/opt/pkg/petalinux/components/yocto/source/microblaze_lite". Proceed[Y/n]? Y
Extracting SDK.............................done
Setting it up...
Extracting buildtools...
done
SDK has been successfully set up and is ready to be used.
Each time you wish to use the SDK in a new shell session, you need to source the environment setup script e.g.
$ . /opt/pkg/petalinux/components/yocto/source/microblaze_lite/environment-setup-microblazeel-v10.0-bs-cmp-ml-xilinx-linux
INFO: PetaLinux Yocto SDK for microblaze has been successfully installed.
INFO: PetaLinux SDK has been installed to /opt/pkg/petalinux/. [liuwanpeng@localhost ~]$ source /opt/pkg/petalinux/settings.sh
PetaLinux environment set to '/opt/pkg/petalinux'
INFO: Checking free disk space
INFO: Checking installed tools
INFO: Checking installed development libraries
INFO: Checking network and other services
WARNING: No tftp server found - please refer to "PetaLinux SDK Installation Guide" for its impact and solution

每次打开termal时,上述命令需要重新输入,太麻烦。可以将该命令加入到~/.bashrc文件中,每次打开termal会自动执行该脚本。

// 关闭网络交互

[liuwanpeng@localhost ~]$ petalinux-util --webtalk off
INFO: Turn off webtalk feature!

3. 建工程

[liuwanpeng@localhost mpsoc]$ petalinux-create -t project -s ../xilinx-zcu102-v2017.2-final.bsp
INFO: Create project:
INFO: Projects:
INFO: * xilinx-zcu102-2017.2
INFO: has been successfully installed to /home/liuwanpeng/mpsoc/
INFO: New project successfully created in /home/liuwanpeng/mpsoc/

4.config

弹出的图形界面配置里不用动

[liuwanpeng@localhost xilinx-zcu102-2017.2]$ petalinux-config --get-hw-description=hardware/xilinx-zcu102-2017.2/xilinx-zcu102-2017.2.sdk/
INFO: Getting hardware description...
[INFO] generating Kconfig for project
[INFO] menuconfig project
/home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/misc/config/Kconfig.syshw:30:warning: defaults for choice values not supported
/home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/misc/config/Kconfig:574:warning: config symbol defined without type
configuration written to /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/project-spec/configs/config *** End of the configuration.
*** Execute 'make' to start the build or try 'make help'. [INFO] sourcing bitbake
[INFO] generating plnxtool conf
[INFO] generating meta-plnx-generated layer
~/mpsoc/xilinx-zcu102-2017.2/build/misc/plnx-generated ~/mpsoc/xilinx-zcu102-2017.2
~/mpsoc/xilinx-zcu102-2017.2
[INFO] generating machine configuration
[INFO] generating bbappends for project . This may take time !
~/mpsoc/xilinx-zcu102-2017.2/build/misc/plnx-generated ~/mpsoc/xilinx-zcu102-2017.2
~/mpsoc/xilinx-zcu102-2017.2
[INFO] generating u-boot configuration files
[INFO] generating kernel configuration files
[INFO] generating kconfig for Rootfs
Generate rootfs kconfig
[INFO] oldconfig rootfs
[INFO] generating petalinux-user-image.bb

5.build

总结:

-错误:install: cannot stat ‘/home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/../components/plnx_workspace/pmu-firmware/Release/pmu-firmware.elf’: No such file or directory

解决:缺库,安装libstdc++.i686,glibc-devel.i686,libz.so.1

  • timeout while establishing a connection with SDK

    解决:AR# 69812没用,看论坛https://forums.xilinx.com/xlnx/board/crawl_message?board.id=EDK&message.id=41823

    in fsbl and pmufw recipes add this two lines

    export _JAVA_OPTIONS

    _JAVA_OPTIONS = "-Duser.home=${TMPDIR}/xsctenv"

(1)出错了 install: cannot stat ‘/home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/../components/plnx_workspace/pmu-firmware/Release/pmu-firmware.elf’: No such file or directory

[liuwanpeng@localhost xilinx-zcu102-2017.2]$ petalinux-build
[INFO] building project
[INFO] sourcing bitbake
INFO: bitbake petalinux-user-image
Loading cache: 100% |############################################| Time: 0:00:02
Loaded 3235 entries from dependency cache.
Parsing recipes: 100% |##########################################| Time: 0:00:09
Parsing of 2446 .bb files complete (2407 cached, 39 parsed). 3236 targets, 224 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Initialising tasks: 100% |#######################################| Time: 0:01:28
Checking sstate mirror object availability: 100% |###############| Time: 0:00:13
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
fsbl-2017.2+gitAUTOINC+122565ec40-r0 do_compile: NOTE: fsbl: compiling from external source tree /opt/pkg/petalinux/tools/hsm/data/embeddedsw
pmu-firmware-2017.2+gitAUTOINC+122565ec40-r0 do_compile: NOTE: pmu-firmware: compiling from external source tree /opt/pkg/petalinux/tools/hsm/data/embeddedsw
ERROR: pmu-firmware-2017.2+gitAUTOINC+122565ec40-r0 do_deploy: Function failed: do_deploy (log file is located at /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_deploy.94828)
ERROR: Logfile of failure stored in: /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_deploy.94828
Log data follows:
| DEBUG: Executing python function sstate_task_prefunc
| DEBUG: Python function sstate_task_prefunc finished
| DEBUG: Executing shell function do_deploy
| install: cannot stat ‘/home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/../components/plnx_workspace/pmu-firmware/Release/pmu-firmware.elf’: No such file or directory
| ERROR: Function failed: do_deploy (log file is located at /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_deploy.94828)
ERROR: Task (/opt/pkg/petalinux/components/yocto/source/aarch64/layers/meta-xilinx-tools/recipes-bsp/pmu/pmu-firmware_git.bb:do_deploy) failed with exit code '1'
NOTE: Tasks Summary: Attempted 2399 tasks of which 1865 didn't need to be rerun and 1 failed. Summary: 1 task failed:
/opt/pkg/petalinux/components/yocto/source/aarch64/layers/meta-xilinx-tools/recipes-bsp/pmu/pmu-firmware_git.bb:do_deploy

xilinx有专门的AR# 69293:跟上述问题还不是同一个

2017.1/2 Zynq UltraScale+ MPSoC: PetaLinux fails to build PMU Firmware on CentOS 7.2/3

Search for Another Answer

Description

Solution

Description

The 2017.1 release of PetaLinux fails to build PMUFW on CentOS 7.2/3 with a build error as shown below:

log.do_deploy:

install: cannot stat /home/wtsemb/Downloads/zcu102-centos-test/build/../components/plnx_workspace/pmu-firmware/Release/pmu-firmware.elf: No such file or directory

ERROR: Function failed: do_deploy (log file is located at /home/wtsemb/Downloads/zcu102-centos-test/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.1+gitAUTOINC+3813f14966-r0/temp/log.do_deploy.60209)

u

log.do_compile:

mb-gcc: error while loading shared libraries: libstdc++.so.6: wrong ELF class: ELFCLASS64

make[1]: *** [Makefile:25: xipipsu.o] Error 127

Solution

This can be due to missing packages which are required to build the PMUFW. The work-around for this issue is to install the packages below on the Linux host.

Once you install the packages and reboot Linux host, you can source PetaLinux tools and then create a new PetaLinux and build it.

libstdc++.i686

glibc-devel.i686

Was this Answer Record helpful?

光安装上述库有时不管用。直接查看log.do_deploy.94828之前的log文件,log.do_compile时有错误,缺少库

mb-ar: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory

(2) Checking sstate mirror object availability不动了,安装(1)的补丁之前无此问题,重启后问题消失

[liuwanpeng@localhost xilinx-zcu102-2017.2]$ petalinux-build
[INFO] building project
[INFO] sourcing bitbake
INFO: bitbake petalinux-user-image
Loading cache: 100% |############################################| Time: 0:00:03
Loaded 3235 entries from dependency cache.
Parsing recipes: 100% |##########################################| Time: 0:00:08
Parsing of 2446 .bb files complete (2407 cached, 39 parsed). 3236 targets, 224 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Initialising tasks: 100% |#######################################| Time: 0:01:35
Checking sstate mirror object availability: 3% | | ETA: 0:04:30
Keyboard Interrupt, closing down...

(3)又来了新错误,"timeout while establishing a connection with SDK""

[liuwanpeng@localhost xilinx-zcu102-2017.2]$ petalinux-build
[INFO] building project
INFO: bitbake petalinux-user-image
Loading cache: 100% |############################################| Time: 0:00:02
Loaded 3235 entries from dependency cache.
Parsing recipes: 100% |##########################################| Time: 0:00:07
Parsing of 2446 .bb files complete (2407 cached, 39 parsed). 3236 targets, 224 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Initialising tasks: 100% |#######################################| Time: 0:01:26
Checking sstate mirror object availability: 100% |###############| Time: 0:00:13
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
fsbl-2017.2+gitAUTOINC+122565ec40-r0 do_compile: NOTE: fsbl: compiling from external source tree /opt/pkg/petalinux/tools/hsm/data/embeddedsw
ERROR: pmu-firmware-2017.2+gitAUTOINC+122565ec40-r0 do_configure: Function failed: do_configure (log file is located at /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_configure.71493)
ERROR: Logfile of failure stored in: /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_configure.71493
Log data follows:
| DEBUG: Executing python function sysroot_cleansstate
| DEBUG: Python function sysroot_cleansstate finished
| DEBUG: Executing shell function do_configure
| MISC_ARG is -yamlconf /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/pmu-firmware.yaml
| APP_ARG is -app "ZynqMP PMU Firmware"
| cmd is: xsct /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/app.tcl -ws /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/../components/plnx_workspace -pname pmu-firmware -rp /opt/pkg/petalinux/tools/hsm/data/embeddedsw -processor psu_pmu_0 -hdf /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/deploy/images/plnx_aarch64/Xilinx-plnx_aarch64.hdf -arch 32 -app "ZynqMP PMU Firmware" -yamlconf /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/pmu-firmware.yaml
| Starting xsdk. This could take few seconds... Eclipse:
| An error has occurred. See the log file
| /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/components/plnx_workspace/.metadata/.log.
| XSCTHELPER INFO: Empty WorkSpace
| Starting xsdk. This could take few seconds... Eclipse:
| An error has occurred. See the log file
| /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/components/plnx_workspace/.metadata/.log.
| timeout while establishing a connection with SDK
| while executing
| "error "timeout while establishing a connection with SDK""
| (procedure "getsdkchan" line 111)
| invoked from within
| "getsdkchan"
| (procedure "::sdk::set_user_repo_path_sdk" line 16)
| invoked from within
| "::sdk::set_user_repo_path_sdk $params(set)"
| (procedure "repo" line 27)
| invoked from within
| "repo -set $path"
| invoked from within
| "if { $params(ws) ne "" } {
| #Local Work Space available
| setws $params(ws)
| if { [catch {importprojects $params(ws)} result] } {
| puts "XSCTHELPER IN..."
| (file "/home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/app.tcl" line 120)
| WARNING: /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/run.do_configure.71493:1 exit 1 from 'xsct /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/app.tcl -ws /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/../components/plnx_workspace -pname pmu-firmware -rp /opt/pkg/petalinux/tools/hsm/data/embeddedsw -processor psu_pmu_0 -hdf /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/deploy/images/plnx_aarch64/Xilinx-plnx_aarch64.hdf -arch 32 -app "ZynqMP PMU Firmware" -yamlconf /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/pmu-firmware.yaml'
| ERROR: Function failed: do_configure (log file is located at /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/tmp/work/plnx_aarch64-xilinx-linux/pmu-firmware/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_configure.71493)
ERROR: Task (/opt/pkg/petalinux/components/yocto/source/aarch64/layers/meta-xilinx-tools/recipes-bsp/pmu/pmu-firmware_git.bb:do_configure) failed with exit code '1'

解决方法:

AR# 69812

2016.4-2017.2 PetaLinux: Build failed due to "error "timeout while establishing a connection with SDK"'

PetaLinux build can fail with the following timeout error in XSCT:

DEBUG: Executing python function sysroot_cleansstate

DEBUG: Python function sysroot_cleansstate finished

DEBUG: Executing shell function do_configure

MISC_ARG is -yamlconf /tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/fsbl.yaml

APP_ARG is -app "Zynq MP FSBL"

cmd is: xsct /tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/app.tcl -ws /home/bryanloz/ZCU102_4PES/4x10GE-Switch/Petalinux/4x10GE/build/../components/plnx_workspace -pname fsbl -rp /proj/petalinux/released/Petalinux-v2017.2/petalinux-v2017.2_0619_1/tools/hsm/data/embeddedsw -processor psu_cortexa53_0 -hdf /tmp/4x10GE-2017.09.12-16.17.33/deploy/images/plnx_aarch64/Xilinx-plnx_aarch64.hdf -arch 64 -app "Zynq MP FSBL" -yamlconf /tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/fsbl.yaml

Starting xsdk. This could take few seconds... Eclipse:

An error has occurred. See the log file

/home/bryanloz/ZCU102_4PES/4x10GE-Switch/Petalinux/4x10GE/components/plnx_workspace/.metadata/.log.

XSCTHELPER INFO: Empty WorkSpace

Starting xsdk. This could take few seconds... Eclipse:

An error has occurred. See the log file

/home/bryanloz/ZCU102_4PES/4x10GE-Switch/Petalinux/4x10GE/components/plnx_workspace/.metadata/.log.

timeout while establishing a connection with SDK

while executing

"error "timeout while establishing a connection with SDK""

(procedure "getsdkchan" line 111)

invoked from within

"getsdkchan"

(procedure "::sdk::set_user_repo_path_sdk" line 16)

invoked from within

"::sdk::set_user_repo_path_sdk $params(set)"

(procedure "repo" line 27)

invoked from within

"repo -set $path"

invoked from within

"if { $params(ws) ne "" } {

Local Work Space available

setws $params(ws)

if { [catch {importprojects $params(ws)} result] } {

puts "XSCTHELPER IN..."

(file "/tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/app.tcl" line 120)

WARNING: /tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/temp/run.do_configure.22432:1 exit 1 from 'eval xsct /tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/app.tcl -ws /home/bryanloz/ZCU102_4PES/4x10GE-Switch/Petalinux/4x10GE/build/../components/plnx_workspace -pname fsbl -rp /proj/petalinux/released/Petalinux-v2017.2/petalinux-v2017.2_0619_1/tools/hsm/data/embeddedsw -processor psu_cortexa53_0 -hdf /tmp/4x10GE-2017.09.12-16.17.33/deploy/images/plnx_aarch64/Xilinx-plnx_aarch64.hdf -arch 64 ${APP_ARG} ${MISC_ARG}'

ERROR: Function failed: do_configure (log file is located at /tmp/4x10GE-2017.09.12-16.17.33/work/plnx_aarch64-xilinx-linux/fsbl/2017.2+gitAUTOINC+122565ec40-r0/temp/log.do_configure.22432)

解决方案

The following work-arounds can be used to overcome this issue

  1. Increase the timeout in XSCT.

Create a file with name .xsdbrc in the $HOME directory

Add the line below in the .xsdbrc file

configparams-sdk-launch-timeout 180

  1. Clean up using the following commands:

rm -rf ~/.Xil

rm -rf ~/.Xilinx

Note: This error could be due to a resource constraint on the PC.

The minimum configuration required for PetaLinux tool installation is 8 cores and 8GB RAM (This is not corrected in 2016.4-2017.2 (UG1144) documentation).

Ideally one project should be built at a time.

If you want to run projects in parallel, set parallel threads and configure execution in petalinux-config->Yocto Settings to lower values which match your system configuration.

[liuwanpeng@localhost xilinx-zcu102-2017.2]$ cd ~

[liuwanpeng@localhost ~]$ echo $HOME

/home/liuwanpeng

[liuwanpeng@localhost ~]$ pwd

/home/liuwanpeng

[liuwanpeng@localhost ~]$ touch .xsdbrc

[liuwanpeng@localhost ~]$ gedit .xsdbrc

[liuwanpeng@localhost ~]$ rm -rf ~/.Xil

[liuwanpeng@localhost ~]$ rm -rf ~/.Xilinx

无效,提示source xxxx/.xsdbrc error。

增加x权限再试,没用

按技术支持提供的方法:

https://forums.xilinx.com/xlnx/board/crawl_message?board.id=EDK&message.id=41823

Xilinx 2016.4 - xsct - Timeout while building fsbl and pmu-firmware

Re: Xilinx 2016.4 - xsct - Timeout while building fsbl and pmu-firmware

Options

‎10-03-2017 02:05 AM

The reason for failure is xsct uses a locking mechanism which is by default set to /home/user/

you have to change this

in fsbl and pmufw recipes add this two lines

export _JAVA_OPTIONS

_JAVA_OPTIONS = "-Duser.home=${TMPDIR}/xsctenv"

有两个fsbl文件

./project-spec/meta-plnx-generated/recipes-bsp/fsbl/fsbl_%.bbappend

./project-spec/meta-user/recipes-bsp/fsbl/fsbl_%.bbappend

一个mufw

./project-spec/meta-plnx-generated/recipes-bsp/pmu/pmu-firmware_%.bbappend

都加上

我擦,真的编过去了,用了上面的方法:

[liuwanpeng@localhost xilinx-zcu102-2017.2]$ petalinux-build
[INFO] building project
[INFO] sourcing bitbake
INFO: bitbake petalinux-user-image
Loading cache: 100% |############################################| Time: 0:00:02
Loaded 3235 entries from dependency cache.
Parsing recipes: 100% |##########################################| Time: 0:00:07
Parsing of 2446 .bb files complete (2407 cached, 39 parsed). 3236 targets, 224 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Initialising tasks: 100% |#######################################| Time: 0:00:40
Checking sstate mirror object availability: 100% |###############| Time: 0:00:17
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
fsbl-2017.2+gitAUTOINC+122565ec40-r0 do_compile: NOTE: fsbl: compiling from external source tree /opt/pkg/petalinux/tools/hsm/data/embeddedsw
pmu-firmware-2017.2+gitAUTOINC+122565ec40-r0 do_compile: NOTE: pmu-firmware: compiling from external source tree /opt/pkg/petalinux/tools/hsm/data/embeddedsw
NOTE: Tasks Summary: Attempted 2445 tasks of which 1869 didn't need to be rerun and all succeeded.
INFO: generating FIT Image
INFO: bitbake petalinux-user-image -R /home/liuwanpeng/mpsoc/xilinx-zcu102-2017.2/build/conf/fit-image.conf
Parsing recipes: 100% |##########################################| Time: 0:04:21
Parsing of 2446 .bb files complete (0 cached, 2446 parsed). 3236 targets, 224 skipped, 0 masked, 0 errors.
NOTE: Resolving any missing task queue dependencies
Initialising tasks: 100% |#######################################| Time: 0:00:21
Checking sstate mirror object availability: 100% |###############| Time: 0:00:03
NOTE: Executing SetScene Tasks
NOTE: Executing RunQueue Tasks
NOTE: Tasks Summary: Attempted 2446 tasks of which 2419 didn't need to be rerun and all succeeded.
INFO: Copying Images from deploy to images
INFO: Creating images/linux directory
[INFO] successfully built project

MPSOC之3——centos环境配置及petalinux安装及使用的更多相关文章

  1. MPSOC之2——ubuntu环境配置及petalinux安装

    MPSOC的linux开发需要使用petalinux,选择Ubuntu操作系统. 1.Ubuntu 1.1. Ubuntu安装 版本16.04.03 vmare版本:12.0 安装时注意选择" ...

  2. win2008 r2 服务器php+mysql+sqlserver2008运行环境配置(从安装、优化、安全等)

    这篇文章主要介绍了win2008 r2 服务器php+mysql+sqlserver2008运行环境配置(从安装.优化.安全等),需要的朋友可以参考下 win2008 r2 安装 http://www ...

  3. JDK和环境配置,eclipse安装与使用

    本博客部分参照https://blog.csdn.net/PGY0000/article/details/79256720 (记住要尊重别人的劳动产品) 原博客给的链接和后面的安装过程有点不一样,不能 ...

  4. CentOS环境下通过YUM安装软件,搭建lnmp环境

    安装nginx.php-fpm和mysql. yum install nginx yum install php-fpm yum install mysql CentOS下LNMP环境配置 1. 配置 ...

  5. grunt的使用方法,环境配置和插件安装

    虽然现在grunt的用的越来越少了,但是插件数量还是相当多的,另外grunt和gulp的使用相当相似: grunt需要安装node和npm 验证node是否安装:node -v 验证npm是否安装:n ...

  6. anadonca环境配置和模块安装

    1.最方便的python环境配置: 下载anaconda即可,自带spyder,集成科学计算的库,自带pip,不用折腾. 想用sublime编写python并运行的话,需要自己配置编译环境,并下载插件 ...

  7. ios开发环境配置及cordova安装与常用命令

    一.ios开发环境配置 1.首先要有台Mac Book,如果有Mac Book,跳过步骤2.3.4,如果没有,执行步骤2.3.4: 2.下载并安装VMware Workstation,最好是下最新版本 ...

  8. Unity3D 发布APK安卓环境配置步骤、安装、教程(含Java/Android)(超全流程)

    Unity3D安卓环境配置运行 本文提供全流程,中文翻译.Chinar坚持将简单的生活方式,带给世人!(拥有更好的阅读体验 -- 高分辨率用户请根据需求调整网页缩放比例) Chinar -- 心分享. ...

  9. 阿里云 centos 环境配置与 django 部署

    1. 免密码登陆 # 本机生成密钥, 并将 pub 复制到阿里云服务器上 $ ssh-keygen -t rsa -P '' # -P表示密码,-P '' 就表示空密码 $ scp ~/.ssh/FI ...

随机推荐

  1. 新一代的昆明网络seo优化技巧

    一年一度的双11又即将到来,今天选择在双11这天新注册了一个博客园,第一篇文章,我决定来谈一谈现在的网络SEO. 起首咱们来熟悉下SEO是什么,SEO全名叫Search Engine Optimiza ...

  2. 数据库中File权限的危害

    The FILE privilege gives you permission to read and write files on the server host using the LOAD DA ...

  3. [转]我在面试.NET/C#程序员时会提出的问题

    http://blog.zhaojie.me/2011/03/my-interview-questions-for-dotnet-programmers.html 说起来我也面试过相当数量的.NET( ...

  4. Oracle单行函数基础运用

    单行函数 整个SQL的精髓:select语句+单行函数(背) 字符串函数 常用的处理字符串的函数有如下: No. 函数名 含义 1 UPPER(c1)  upper 将字符串全部转为大写 2 LOWE ...

  5. 洛谷 P3391 【模板】文艺平衡树

    题目背景 这是一道经典的Splay模板题--文艺平衡树. 题目描述 您需要写一种数据结构,来维护一个有序数列,其中需要提供以下操作:翻转一个区间,例如原有序序列是5 4 3 2 1,翻转区间是[2,4 ...

  6. 关于HTML5新手应该知道的几点知识

    随着移动互联网的快速发展,HTML5迅速崛起,我们的生活的方方面面都被HTML5渗透着.HTML5在PC端.移动端上均应用广泛,被称为Web的未来.而随着Google正式停止支持Swiffy,HTML ...

  7. 圆形的ImageView

    转载自gitHub的ImageView,因为本身就是可用的,也没什么好说的,拷贝回去用就是了,可以设置除了背景,还可以设置边框什么的,比起CardView设置圆角,功能更加强大. import and ...

  8. GDI+ 应用,Release没有错误,Debug很多。

    问题描述: 在VC6环境中,一个界面工程利用了GDI+的一些库,Release模式下编译.运行无误,但在Debug模式下就会报告错误. xxx.cpp D:\Program Files\Microso ...

  9. 【LintCode·容易】字符串置换

    字符串置换 描述: 给定两个字符串,请设计一个方法来判定其中一个字符串是否为另一个字符串的置换. 置换的意思是,通过改变顺序可以使得两个字符串相等. 样例: "abc" 为 &qu ...

  10. Spring Cloud 之 Ribbon

    新建Spring Boot工程,命名为ribbon 1.pom.xml添加依赖 <?xml version="1.0" encoding="UTF-8"? ...