blob: f729bf0b72d6c4e7cd38c0d1124014d01edf79c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
flash_instructions() {
echo "# echo 0 > /sys/block/mmcblk2boot0/force_ro"
echo "# dd if=/boot/u-boot/images/u-boot.imx of=/dev/mmcblk2boot0 bs=1k seek=1"
}
extlinux_warning() {
echo "==> WARNING: Remember to set up your kernels in /boot/extlinux/extlinux.conf"
}
flash_uboot() {
# For now we assume that users are flashing u-boot on the eMMC
# u-boot.img can also be loaded through USB for the frist boot with imx_usb_loader
echo "A new U-Boot version needs to be flashed."
echo "Do you want to flash it on the eMMC now? [y|N]"
read -r shouldwe
if [[ $shouldwe =~ ^([yY][eE][sS]|[yY])$ ]]; then
echo 0 > /sys/block/mmcblk2boot0/force_ro
dd if=/boot/u-boot/images/u-boot.imx of=/dev/mmcblk2boot0 bs=1k seek=1
else
echo "You can do this later by running:"
flash_instructions
fi
extlinux_warning
}
post_install() {
flash_uboot
}
post_upgrade() {
flash_uboot
}
|