diff options
Diffstat (limited to 'meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-zynq-scr/boot.cmd.ubifs')
-rw-r--r-- | meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-zynq-scr/boot.cmd.ubifs | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-zynq-scr/boot.cmd.ubifs b/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-zynq-scr/boot.cmd.ubifs deleted file mode 100644 index 60c48eda..00000000 --- a/meta-xilinx-bsp/recipes-bsp/u-boot/u-boot-zynq-scr/boot.cmd.ubifs +++ /dev/null | |||
@@ -1,54 +0,0 @@ | |||
1 | # This is a boot script for U-Boot | ||
2 | # Generate boot.scr: | ||
3 | # mkimage -c none -A arm -T script -d boot.cmd.default boot.scr | ||
4 | # | ||
5 | ################ | ||
6 | @@PRE_BOOTENV@@ | ||
7 | |||
8 | for boot_target in ${boot_targets}; | ||
9 | do | ||
10 | if test "${boot_target}" = "xspi0" || test "${boot_target}" = "qspi" || test "${boot_target}" = "qspi0"; then | ||
11 | ubifsls @@FIT_IMAGE@@ | ||
12 | if test $? = 0; then | ||
13 | ubifsload @@FIT_IMAGE_LOAD_ADDRESS@@ @@FIT_IMAGE@@; | ||
14 | bootm @@FIT_IMAGE_LOAD_ADDRESS@@; | ||
15 | fi | ||
16 | ubifsls @@KERNEL_IMAGE@@ | ||
17 | if test $? = 0; then | ||
18 | ubifsload @@KERNEL_LOAD_ADDRESS@@ @@KERNEL_IMAGE@@; | ||
19 | fi | ||
20 | ubifsls system.dtb | ||
21 | if test $? = 0; then | ||
22 | ubifsload @@DEVICETREE_ADDRESS@@ system.dtb | ||
23 | fi | ||
24 | ubifsls @@RAMDISK_IMAGE@@ | ||
25 | if test $? = 0; then | ||
26 | ubifsload @@RAMDISK_IMAGE_ADDRESS@@ @@RAMDISK_IMAGE@@ | ||
27 | @@KERNEL_BOOTCMD@@ @@KERNEL_LOAD_ADDRESS@@ @@RAMDISK_IMAGE_ADDRESS@@ @@DEVICETREE_ADDRESS@@ | ||
28 | exit; | ||
29 | fi | ||
30 | @@KERNEL_BOOTCMD@@ @@KERNEL_LOAD_ADDRESS@@ - @@DEVICETREE_ADDRESS@@ | ||
31 | exit; | ||
32 | fi | ||
33 | if test "${boot_target}" = "mmc0" || test "${boot_target}" = "mmc1" ; then | ||
34 | run bootcmd_${boot_target}; | ||
35 | if test -e ${devtype} ${devnum}:${distro_bootpart} /@@FIT_IMAGE@@; then | ||
36 | ext4load ${devtype} ${devnum}:${distro_bootpart} @@FIT_IMAGE_LOAD_ADDRESS@@ @@FIT_IMAGE@@; | ||
37 | bootm @@FIT_IMAGE_LOAD_ADDRESS@@; | ||
38 | exit; | ||
39 | fi | ||
40 | if test -e ${devtype} ${devnum}:${distro_bootpart} /@@KERNEL_IMAGE@@; then | ||
41 | ext4load ${devtype} ${devnum}:${distro_bootpart} @@KERNEL_LOAD_ADDRESS@@ @@KERNEL_IMAGE@@; | ||
42 | fi | ||
43 | if test -e ${devtype} ${devnum}:${distro_bootpart} /system.dtb; then | ||
44 | ext4load ${devtype} ${devnum}:${distro_bootpart} @@DEVICETREE_ADDRESS@@ system.dtb; | ||
45 | fi | ||
46 | if test -e ${devtype} ${devnum}:${distro_bootpart} /@@RAMDISK_IMAGE@@; then | ||
47 | ext4load ${devtype} ${devnum}:${distro_bootpart} @@RAMDISK_IMAGE_ADDRESS@@ @@RAMDISK_IMAGE@@; | ||
48 | @@KERNEL_BOOTCMD@@ @@KERNEL_LOAD_ADDRESS@@ @@RAMDISK_IMAGE_ADDRESS@@ @@DEVICETREE_ADDRESS@@ | ||
49 | exit; | ||
50 | fi | ||
51 | @@KERNEL_BOOTCMD@@ @@KERNEL_LOAD_ADDRESS@@ - @@DEVICETREE_ADDRESS@@ | ||
52 | exit; | ||
53 | fi | ||
54 | done | ||