diff options
author | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2019-11-22 15:32:59 -0800 |
---|---|---|
committer | jc_gargma <jc_gargma@iserlohn-fortress.net> | 2019-11-22 15:32:59 -0800 |
commit | 17cb75f37adab5656fd9355720fb7544035e2280 (patch) | |
tree | 90131c2899bb00f71a23c701f809c16a3d7e618b /mkscr | |
download | uboot-pinebookpro-17cb75f37adab5656fd9355720fb7544035e2280.tar.xz |
Initial commit
Diffstat (limited to 'mkscr')
-rw-r--r-- | mkscr | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#!/bin/bash + +if [[ ! -x /usr/bin/mkimage ]]; then + echo "mkimage not found. Please install uboot-tools:" + echo " pacman -S uboot-tools" + exit 1 +fi + +mkimage -A arm -O linux -T script -C none -n "U-Boot boot script" -d boot.txt boot.scr |