blob: cbc5fef7e6a1d7b1cb8ad1ddee66ebb2fde75e05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
flash_uboot() {
  echo "A new U-Boot version can be flashed onto your install drive. Please use lsblk to determine your drive, before proceeding."
    echo "You can do this by running:"
	echo "# dd if=/boot/u-boot-sunxi-with-spl-pinebook.bin of=/dev/mmcblkX bs=8k seek=1"
}
post_install() {
  flash_uboot
}
post_upgrade() {
  flash_uboot
}
  |