Hi,
I've just a small hint regarding the following issue.
On Wed, Jan 25, 2017 at 07:30:11PM +0100, Bernhard Blieninger wrote:
mkimage -A arm -C none -T script -n 'Custom Boot Script' -d boot.txt boot.scr
Problem now is that is says something like:
*ERROR: booting os 'Unknown OS' (3) is not supported*
When generating an uImage mkimage supports to set the operating system in the commandline via '-O <os>'. So, your mkimage command line should read
mkimage -A arm -O linux -C none -T script -n 'Custom Boot Script' -d boot.txt boot.scr
Hope it helps