summaryrefslogtreecommitdiff
path: root/libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-25 00:08:55 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2016-02-25 00:09:47 -0300
commitdc66d81a0120cf239389b0dda50b1193c1fbf150 (patch)
tree1c2f7f990e678b4e501ad568384d7c38f485da30 /libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install
parent34391c4f66249c6af7856637a09aaae57f0f74a3 (diff)
uboot-omap4_panda: add new package to [libre]
Diffstat (limited to 'libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install')
-rw-r--r--libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install21
1 files changed, 0 insertions, 21 deletions
diff --git a/libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install b/libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install
deleted file mode 100644
index 8d28bcdcf..000000000
--- a/libre/uboot-pandaboard-linux-libre/uboot-pandaboard-linux-libre.install
+++ /dev/null
@@ -1,21 +0,0 @@
-flash_uboot() {
- echo "A new U-Boot version needs to be flashed onto /dev/mmcblk0."
- echo "Do this now? [y|N]"
- read -r shouldwe
- if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
- dd if=/boot/uboot-pandaboard-linux-libre/MLO of=/dev/mmcblk0 count=1 seek=1 conv=notrunc bs=128k
- dd if=/boot/uboot-pandaboard-linux-libre/u-boot.img of=/dev/mmcblk0 count=2 seek=1 conv=notrunc bs=384k
- else
- echo "You can do this later by running:"
- echo "# dd if=/boot/uboot-pandaboard-linux-libre/MLO of=/dev/mmcblk0 count=1 seek=1 conv=notrunc bs=128k"
- echo "# dd if=/boot/uboot-pandaboard-linux-libre/u-boot.img of=/dev/mmcblk0 count=2 seek=1 conv=notrunc bs=384k"
- fi
-}
-
-post_install() {
- flash_uboot
-}
-
-post_upgrade() {
- flash_uboot
-}