Tinkerboard: fix firmware update mechanism

This commit is contained in:
Calin Crisan 2019-02-01 18:04:15 +02:00
parent abd5ee8eb3
commit 87e4db97f3
4 changed files with 2 additions and 3 deletions

View File

@ -2,4 +2,3 @@ label kernel-4.4
kernel /zImage
fdt /rk3288-miniarm.dtb
append console=tty1 root=/dev/mmcblk0p2 rootwait panic=10 earlyprintk quiet loglevel=1 ipv6.disable=1

Binary file not shown.

View File

@ -1,4 +1,3 @@
#!/bin/sh
sed 's/\([ ]*\)\(initrd.*\)/\1#\2/g' /boot/extlinux/extlinux.conf
sed -i 's/\([ ]*\)\(initrd.*\)/\1#\2/g' /boot/extlinux/extlinux.conf

View File

@ -5,5 +5,6 @@ set -e
cp $IMG_DIR/zImage $BOOT_DIR
cp $IMG_DIR/rk3288-miniarm.dtb $BOOT_DIR
cp $BOARD_DIR/hw_intf.conf $BOOT_DIR
cp $BOARD_DIR/initrd.gz $BOOT_DIR
cp -r $BOARD_DIR/extlinux $BOOT_DIR