diff options
author | Nathan Rossi <nathan@nathanrossi.com> | 2016-01-06 16:53:36 +1000 |
---|---|---|
committer | Nathan Rossi <nathan@nathanrossi.com> | 2016-01-06 16:53:36 +1000 |
commit | 5b04983edd11bbf0dc6ed878f8a447352ee4e25f (patch) | |
tree | 20cfaa01ec70d99d377ba21a39f975d8f4220808 | |
parent | b5e4b37bff4749b22af6b8c94b5af7a654bb2b35 (diff) | |
download | meta-xilinx-5b04983edd11bbf0dc6ed878f8a447352ee4e25f.tar.gz |
fsbl-platform-init: Drop this recipe it is no longer required
The ps7_init_gpl.* files for zc702, zc706, zedboard and microzed are
now available as part of the U-Boot source and are automatically
selected and handled from within the U-Boot recipe. As such this recipe
is no longer required.
Signed-off-by: Nathan Rossi <nathan@nathanrossi.com>
-rw-r--r-- | recipes-bsp/platform-init/fsbl-platform-init_2014.4.bb | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/recipes-bsp/platform-init/fsbl-platform-init_2014.4.bb b/recipes-bsp/platform-init/fsbl-platform-init_2014.4.bb deleted file mode 100644 index 92f41759..00000000 --- a/recipes-bsp/platform-init/fsbl-platform-init_2014.4.bb +++ /dev/null | |||
@@ -1,32 +0,0 @@ | |||
1 | SUMMARY = "Xilinx FSBL Platform Headers" | ||
2 | DESCRPTION = "Xilinx FSBL ps7_init_gpl.c/h platform headers, used for building u-boot-spl and fsbl" | ||
3 | HOMEPAGE = "http://www.xilinx.com" | ||
4 | SECTION = "bsp" | ||
5 | |||
6 | include zynq7-platform-init.inc | ||
7 | |||
8 | COMPATIBLE_MACHINE = "zc702-zynq7|zc706-zynq7|zedboard-zynq7|microzed-zynq7" | ||
9 | |||
10 | # This license refers to only the ps7_init_gpl.c and ps7_init_gpl.h, all other | ||
11 | # files in the repo have a different license, refer to the source for more | ||
12 | # detail. | ||
13 | LICENSE = "GPLv2+" | ||
14 | LIC_FILES_CHKSUM = "files://${COREBASE}/meta/files/common-licenses/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6" | ||
15 | |||
16 | SRC_URI = "git://github.com/Xilinx/embeddedsw.git;protocol=https;nobranch=1" | ||
17 | SRCREV = "5f9ae570bf665fcded71364d19b6fae73e63190b" | ||
18 | |||
19 | S = "${WORKDIR}/git" | ||
20 | |||
21 | BOARD_NAME_zc702-zynq7 = "zc702" | ||
22 | BOARD_NAME_zc706-zynq7 = "zc706" | ||
23 | BOARD_NAME_zedboard-zynq7 = "zed" | ||
24 | BOARD_NAME_microzed-zynq7 = "microzed" | ||
25 | |||
26 | FSBL_MISC_PATH = "lib/sw_apps/zynq_fsbl/misc/${BOARD_NAME}" | ||
27 | |||
28 | do_install_append() { | ||
29 | install -m 0644 ${S}/${FSBL_MISC_PATH}/ps7_init_gpl.c ${D}${PLATFORM_INIT_DIR}/ | ||
30 | install -m 0644 ${S}/${FSBL_MISC_PATH}/ps7_init_gpl.h ${D}${PLATFORM_INIT_DIR}/ | ||
31 | } | ||
32 | |||