diff options
author | Inha Song <ideal.song@samsung.com> | 2015-02-26 10:08:21 +0900 |
---|---|---|
committer | Przemyslaw Marczak <p.marczak@samsung.com> | 2015-05-19 12:05:58 +0200 |
commit | 3b16fe574e221baba946ff22256f687604220226 (patch) | |
tree | 703e6a6ccb9a614c5de28296040601b3d40df8b8 | |
parent | 0132f02ff32666d51aeed8ce2a7a1f4465f1a4d9 (diff) | |
download | u-boot-3b16fe574e221baba946ff22256f687604220226.tar.gz u-boot-3b16fe574e221baba946ff22256f687604220226.tar.bz2 u-boot-3b16fe574e221baba946ff22256f687604220226.zip |
tool: mkimage_signed: Add odroid-xu3_defconfig support
This patch add odroid-xu3_defconfig for Odroid XU3 board.
Signed-off-by: Inha Song <ideal.song@samsung.com>
-rwxr-xr-x | tools/mkimage_signed.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/mkimage_signed.sh b/tools/mkimage_signed.sh index 11f8427af6..a5bc8f40ca 100755 --- a/tools/mkimage_signed.sh +++ b/tools/mkimage_signed.sh @@ -65,6 +65,8 @@ echo -n "none" > sig-product if [ $CONFIG == "tizen_defconfig" ]; then echo -n "slp_midasq" > sig-board +elif [ $CONFIG == "odroid-xu3_defconfig" ]; then + echo -n "odroid_xu3" > sig-board else echo -n "slp_u1" > sig-board fi |