diff options
author | Przemyslaw Marczak <p.marczak@samsung.com> | 2014-07-31 16:26:45 +0200 |
---|---|---|
committer | Przemyslaw Marczak <p.marczak@samsung.com> | 2015-05-18 12:10:20 +0200 |
commit | 3da9ad923b0d44ccae2c78aad49a8d4e7e9b06cb (patch) | |
tree | 37a1f945d47155c072a19c9739cf0583c60fa795 | |
parent | 294ed90ffe2ef729babdf01151dcf5e9adf146b9 (diff) | |
download | u-boot-3da9ad923b0d44ccae2c78aad49a8d4e7e9b06cb.tar.gz u-boot-3da9ad923b0d44ccae2c78aad49a8d4e7e9b06cb.tar.bz2 u-boot-3da9ad923b0d44ccae2c78aad49a8d4e7e9b06cb.zip |
tool:mkimage_signed: add tizen_defconfig support
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
-rwxr-xr-x | tools/mkimage_signed.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/mkimage_signed.sh b/tools/mkimage_signed.sh index 5b0c7bc05b..11f8427af6 100755 --- a/tools/mkimage_signed.sh +++ b/tools/mkimage_signed.sh @@ -33,7 +33,7 @@ if [ $# != $INPUT_ARGS ]; then echo "Usage:" echo "./mksigimage.sh input.bin config" echo "e.g.:" - echo "./mksigimage.sh u-boot-dtb.bin trats2_config" + echo "./mksigimage.sh u-boot-multi.bin tizen_config" exit fi @@ -63,10 +63,10 @@ echo -n "BoOt" > sig-magic echo -n `date +%Y%m%d%H` > sig-date echo -n "none" > sig-product -if [ $CONFIG == "trats_config" ]; then - echo -n "slp_u1" > sig-board -else +if [ $CONFIG == "tizen_defconfig" ]; then echo -n "slp_midasq" > sig-board +else + echo -n "slp_u1" > sig-board fi cat sig-magic /dev/zero | head -c 12 > sig-tmp |