summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Agner <stefan.agner@toradex.com>2018-06-12 17:18:22 +0200
committerRicardo Salveti <ricardo@opensourcefoundries.com>2018-06-13 22:18:28 -0300
commit2d9e3a29b534f07c84a7007607005679001a04db (patch)
treec4a8de7d60dfda54ec61c90e8d4356c092aac962
parentc0daf31bc9e01ae4975fb14b6f514195066661f2 (diff)
u-boot-ostree-scr: remove unecessary device specific scripts
Now that the default scripts rely on distro boot variables there is no need for device specific scripts. Drop them. Signed-off-by: Stefan Agner <stefan.agner@toradex.com>
-rw-r--r--recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/boot.cmd8
-rw-r--r--recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/uEnv.txt.in6
2 files changed, 0 insertions, 14 deletions
diff --git a/recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/boot.cmd b/recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/boot.cmd
deleted file mode 100644
index a547e6b..0000000
--- a/recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/boot.cmd
+++ /dev/null
@@ -1,8 +0,0 @@
-if mmc dev 1; then
- setenv mmcdev 1;
-else
- setenv mmcdev 0;
-fi
-fatload mmc $mmcdev:1 $loadaddr /uEnv.txt
-env import -t $loadaddr $filesize
-run bootcmd
diff --git a/recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/uEnv.txt.in b/recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/uEnv.txt.in
deleted file mode 100644
index 4a168c7..0000000
--- a/recipes-bsp/u-boot/u-boot-ostree-scr/colibri-imx7/uEnv.txt.in
+++ /dev/null
@@ -1,6 +0,0 @@
-bootcmd_dtb=fatload mmc ${mmcdev}:1 ${fdt_addr_r} /${soc}-colibri-${fdt_board}.dtb
-bootcmd_otenv=ext4load mmc ${mmcdev}:2 ${loadaddr} /boot/loader/uEnv.txt; env import -t ${loadaddr} ${filesize}
-bootcmd_load_k=ext4load mmc ${mmcdev}:2 ${kernel_addr_r} "/boot"${kernel_image}
-bootcmd_load_r=ext4load mmc ${mmcdev}:2 ${ramdisk_addr_r} "/boot"${ramdisk_image}; setenv ramdisk_size ${filesize}
-bootcmd_run=bootz ${kernel_addr_r} ${ramdisk_addr_r}:${ramdisk_size} ${fdt_addr_r}
-bootcmd=run bootcmd_dtb; run bootcmd_otenv; run bootcmd_load_k; run bootcmd_load_r; run bootcmd_run