summaryrefslogtreecommitdiff
path: root/libre/uboot-sunxi/uboot-sunxi.install
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/uboot-sunxi.install
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/uboot-sunxi.install')
-rw-r--r--libre/uboot-sunxi/uboot-sunxi.install22
1 files changed, 0 insertions, 22 deletions
diff --git a/libre/uboot-sunxi/uboot-sunxi.install b/libre/uboot-sunxi/uboot-sunxi.install
deleted file mode 100644
index cd4afef4b..000000000
--- a/libre/uboot-sunxi/uboot-sunxi.install
+++ /dev/null
@@ -1,22 +0,0 @@
-flash_uboot() {
- echo "A new U-Boot version needs to be flashed onto /dev/mmcblk0."
- echo "Do you want to do this now? [y|N]"
- read -r shouldwe
- if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
- dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8
- else
- echo "You can do this later by running:"
- echo "# dd if=/boot/u-boot-sunxi-with-spl.bin of=/dev/mmcblk0 bs=1024 seek=8"
- fi
-}
-
-## arg 1: the new package version
-post_install() {
- flash_uboot
-}
-
-## arg 1: the new package version
-## arg 2: the old package version
-post_upgrade() {
- flash_uboot
-}