Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

...


S.NoPlatformBoard NameBSPBSP File.list
1Zynq UltraScale+ MPSoC - RFSoCzcu111xilinx-zcu111-v2019.2-final.bspxilinx-zcu111-2019.2-sources.list
2Zynq UltraScale+ MPSoC - RFSoCzcu1275xilinx-zcu1275-v2019.2-final.bspxilinx-zcu1275-2019.2-sources.list
3Zynq UltraScale+ MPSoC - RFSoCzcu1285xilinx-zcu1285-v2019.2-final.bspxilinx-zcu1285-2019.2-sources.list
4Zynq UltraScale+ MPSoCzcu106xilinx-zcu106-v2019.2-final.bspxilinx-zcu106-2019.2-sources.list
5Zynq UltraScale+ MPSoCzcu104xilinx-zcu104-v2019.2-final.bspxilinx-zcu104-2019.2-sources.list
6Zynq UltraScale+ MPSoCzcu102xilinx-zcu102-v2019.2-final.bspxilinx-zcu102-2019.2-sources.list
7Zynq 7000zc706xilinx-zc706-v2019.2-final.bspxilinx-zc706-2019.2-sources.list
8Zynq 7000zc702xilinx-zc702-v2019.2-final.bspxilinx-zc706-2019.2-sources.list
9Zynq 7000zedavnet-digilent-zedboard-v2019.2-final.bspavnet-digilent-zedboard-2019.2-sources.list
10MicroBlazekc705xilinx-kc705-axi-full-v2019.2-final.bspxilinx-kc705-axi-full-2019.2-sources.list
11MicroBlazekcu105xilinx-kcu105-axi-full-v2019.2-final.bspxilinx-kcu105-axi-full-2019.2-sources.list
12MicroBlazeac701 xilinx-ac701-axi-full-v2019.2-final.bsp
xilinx-ac701-axi-full-2019.2-sources.list
13MBvcu118xilinx-vcu118-v2019.2-final.bspxilinx-vcu118-2019.2-sources.list
14MBsp701xilinx-sp701-v2019.2-final.bspxilinx-sp701-2019.2-sources.list


Obtaining License and Source Code for Root File System in a BSP


A script is provided here for ease of use to a user to fetch the Licenses and Source code of the rootfs Root File System in a given BSP.

The script can be downloaded here fetch.sh

...

./fetch.sh -a aarch64 -r 2019 -f filename.list -t sources

https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/embedded-design-tools.html

  • Boards under "Zynq UltraScale+ MPSoC Board Support Packages" will use aarch64 ARCH
  • Boards under "Zynq-7000 SoC Board Support Packages" will use arm ARCH
  • Boards under "MicroBlaze Board Support Packages" will user arm microblaze


How does the script work?

...

The input of the script is a manifest file which indicates the rootfs Root File System components that are part of the BSP.

...

udev-extraconf can be ignored as it is startup script of embedded Linux on target and does not have any source code related to it.
watchdog-init has the source script along with licenses in licenses

...

Code Block
Add the below configuration in :
project-spec/meta-user/conf/petalinuxbsp.conf
INHERIT += "archiver"
ARCHIVER_MODE[src] = "original"
COPYLEFT_LICENSE_INCLUDE =""
COPYLEFT_LICENSE_EXCLUDE =""

...


Code Block
petalinux-build
All the source code is deployed :  build/tmp/deploy/sources/
and license files is deployed   :  build/tmp/deploy/licenses/
 
 
Sometimes TMPDIR value is not as mentioned above.
Check build/conf/plnxtool.conf and get the TMPDIR value
Navigate (cd command) to TMPDIR to find the sources and licenses

Please note: 

Build times are slower while generating licenses and source files 

FAQ

  • Why and who needs this ?

Users who have concerns on the Licenses or Source code in a given BSP Root File System should use the methodology described here to check if it meet their requirement.

...

Users who has their own procedures to check Licenses and Source code for their BSP their Root File System development might not need this

...

Users who want to verify the BSP contents and check all the Licenses before using the BSP Root File System can use the script published here

...

The prebuilt images in each BSP has all the licenses in of the rootfs Root File System at /usr/share/licenses in the Root File System.

The manifest file which list all the rootfs Root File System components in a BSP is also available in prebuilts.

...

The same is also available at https://www.xilinx.com/support/download/index.html/content/xilinx/en/downloadNav/embedded-design-tools.html

The "Open Source License and Source code" section contains all the Licenses and Source code files


  • What is different between the information in the PetaLinux Tool/BSP download area vs the script provided here?

The script helps to extract just the information of Licenses and Source code related to a given BSP Root File System

In addition, the script provided here is an added flexibility for an user to fetch Licenses or Source code for a given BSP BSP Root File System even before using the PetaLinux Tool or BSP. 

...