summaryrefslogtreecommitdiff
path: root/libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-10-05 17:04:10 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2015-10-05 17:05:21 -0300
commit1a149512bc31629bfbc89cdf0da570ad3b1a2998 (patch)
tree5958132aee4e0a59d8808c5043ace94ca4996dbb /libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install
parent69cac6a08788460bc31b1157c5a03deb781801d0 (diff)
downloadabslibre-1a149512bc31629bfbc89cdf0da570ad3b1a2998.tar.gz
abslibre-1a149512bc31629bfbc89cdf0da570ad3b1a2998.tar.bz2
abslibre-1a149512bc31629bfbc89cdf0da570ad3b1a2998.zip
uboot-sunxi-linux-libre: fix install files
Diffstat (limited to 'libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install')
-rw-r--r--libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install22
1 files changed, 22 insertions, 0 deletions
diff --git a/libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install b/libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install
new file mode 100644
index 000000000..b6fba6640
--- /dev/null
+++ b/libre/uboot-sunxi-linux-libre/uboot-pcduino3-linux-libre.install
@@ -0,0 +1,22 @@
+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/uboot-pcduino3-linux-libre/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/uboot-pcduino3-linux-libre/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
+}