Skip to content

Commit

Permalink
fixing copypaste errors
Browse files Browse the repository at this point in the history
  • Loading branch information
euss committed Oct 12, 2011
1 parent 07a58a1 commit 1c693b5
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions readself.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,6 @@ static u64 ctrl_size;
static int decrypted = -1;

struct id2name_tbl t_sdk_type[] = {
{0, "Retail (Type 0)"},
{1, "Retail"},
{2, "Retail (Type 1)"},
{0x8000, "Devkit"},
{0, NULL}
};

struct id2name_tbl t_app_type[] = {
{0, "Retail (Type 0)"},
{1, "Retail"},
{2, "Retail (Type 1)"},
Expand Down Expand Up @@ -76,6 +68,17 @@ struct id2name_tbl t_app_type[] = {
{0, NULL}
};

struct id2name_tbl t_app_type[] = {
{1, "level 0"},
{2, "level 1"},
{3, "level 2"},
{4, "application"},
{5, "isolated SPU module"},
{6, "secure loader"},
{8, "NP-DRM application"},
{0, NULL}
};

static struct id2name_tbl t_shdr_type[] = {
{0, "NULL"},
{1, "PROGBITS"},
Expand Down

0 comments on commit 1c693b5

Please sign in to comment.