summaryrefslogtreecommitdiffstats
path: root/firmware/common/loader_strerror.c
blob: 8dcd19d18f8bd88ffef90a554c316ce6b5d9852a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/***************************************************************************
 *             __________               __   ___.
 *   Open      \______   \ ____   ____ |  | _\_ |__   _______  ___
 *   Source     |       _//  _ \_/ ___\|  |/ /| __ \ /  _ \  \/  /
 *   Jukebox    |    |   (  <_> )  \___|    < | \_\ (  <_> > <  <
 *   Firmware   |____|_  /\____/ \___  >__|_ \|___  /\____/__/\_ \
 *                     \/            \/     \/    \/            \/
 *
 * Copyright (C) 2013 Marcin Bukat
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 *
 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
 * KIND, either express or implied.
 *
 ****************************************************************************/

#include "loader_strerror.h"

char *loader_strerror(enum error_t error)
{
    switch(error)
    {
    case EFILE_EMPTY:
        return "File empty";
    case EFILE_NOT_FOUND:
        return "File not found";
    case EREAD_CHKSUM_FAILED:
        return "Read failed (chksum)";
    case EREAD_MODEL_FAILED:
        return "Read failed (model)";
    case EREAD_IMAGE_FAILED:
        return "Read failed (image)";
    case EBAD_CHKSUM:
        return "Bad checksum";
    case EFILE_TOO_BIG:
        return "File too big";
    case EINVALID_FORMAT:
        return "Invalid file format";
#if defined(MI4_FORMAT)
    case EREAD_HEADER_FAILED:
        return "Can't read mi4 header";
    case EKEY_NOT_FOUND:
        return "Can't find crypt key";
    case EDECRYPT_FAILED:
        return "Decryption failed";
#elif defined(RKW_FORMAT)
    case EREAD_HEADER_FAILED:
        return "Can't read RKW header";
    case EBAD_HEADER_CHKSUM:
        return "RKW header CRC error";
    case EINVALID_LOAD_ADDR:
        return "RKW Load address mismatch";
    case EBAD_MODEL:
        return "Bad model number";
#endif
    default:
        return "Unknown error";
    }
}