Currently I run Debian Stretch on HC1, using tutorial in https://wiki.debian.org/InstallingDebianOn/OdroidHC1.
Now I wonder, should I be able to perfom inplace upgrade (not image rebuild) to Buster? Should it work with Buster's kernel?
Also, I see that mentoned tutorial was changed to use `flash-kernel` packages, any "dangers" for changing boot setup..? Currenlty, I run this script every time Linux updates:
Code: Select all
#!/usr/bin/env bash
if [[ $(id -u) != 0 ]]
then
>&2 echo "Please run as root."
exit 1
fi
echo "Creating boot image files..."
mkimage -A arm -O linux -T script -C none -a 0 -e 0 -n 'boot.ini as u-boot script' -d /boot/boot.ini /boot/boot.scr
mkimage -A arm -O linux -T ramdisk -C none -a 0 -e 0 -n image -d /boot/initrd /boot/initrd.ub
echo "Done."
Big thanks!