summaryrefslogtreecommitdiff
path: root/libre/uboot-sunxi/boot.txt
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-04-06 00:03:42 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-04-06 00:23:35 +0200
commit4a379f82580a32fe460be428762ccc6a2c9f01cd (patch)
treeeb7b558e78e11d38431e7e4a9dce9d3a3e24608b /libre/uboot-sunxi/boot.txt
parent99b86c2b49bfb8adb453badc76d0ee9fbee31b58 (diff)
downloadabslibre-4a379f82580a32fe460be428762ccc6a2c9f01cd.tar.gz
abslibre-4a379f82580a32fe460be428762ccc6a2c9f01cd.tar.bz2
abslibre-4a379f82580a32fe460be428762ccc6a2c9f01cd.zip
libre: remove uboot-sunxi
The uboot-sunxi PKGBUILD is completely unmaintained and it has long been replaced by the uboo4extlinux-sunxi PKGBUILD. All the devices that were supported by uboot-sunxi are now supported by the uboo4extlinux-sunxi PKGBUILD. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
Diffstat (limited to 'libre/uboot-sunxi/boot.txt')
-rw-r--r--libre/uboot-sunxi/boot.txt19
1 files changed, 0 insertions, 19 deletions
diff --git a/libre/uboot-sunxi/boot.txt b/libre/uboot-sunxi/boot.txt
deleted file mode 100644
index 1eac14d9c..000000000
--- a/libre/uboot-sunxi/boot.txt
+++ /dev/null
@@ -1,19 +0,0 @@
-part uuid ${devtype} ${devnum}:${bootpart} uuid
-setenv bootargs console=${console} root=PARTUUID=${uuid} rw rootwait
-
-if load ${devtype} ${devnum}:${bootpart} ${kernel_addr_r} /boot/vmlinuz-linux-libre; then
- if load ${devtype} ${devnum}:${bootpart} ${fdt_addr_r} /boot/dtbs/linux-libre/${fdtfile}; then
- if load ${devtype} ${devnum}:${bootpart} ${ramdisk_addr_r} /boot/initramfs-linux-libre.img; then
- bootz ${kernel_addr_r} ${ramdisk_addr_r}:${filesize} ${fdt_addr_r};
- else
- bootz ${kernel_addr_r} - ${fdt_addr_r};
- fi;
- fi;
-fi
-
-if load ${devtype} ${devnum}:${bootpart} 0x48000000 /boot/uImage; then
- if load ${devtype} ${devnum}:${bootpart} 0x43000000 /boot/script.bin; then
- setenv bootm_boot_mode sec;
- bootm 0x48000000;
- fi;
-fi