From 4b806f1e7d9be4018bd957f6e9a7fec10c71c17b Mon Sep 17 00:00:00 2001 From: Kostas Missos Date: Fri, 1 Jun 2018 19:58:25 +0300 Subject: [PATCH] Oups. Remove unmerged functions --- ipl/hos.c | 2 +- ipl/main.c | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/ipl/hos.c b/ipl/hos.c index d8dd821..cf42447 100755 --- a/ipl/hos.c +++ b/ipl/hos.c @@ -386,7 +386,7 @@ int hos_launch(ini_sec_t *cfg) gfx_printf(&gfx_con, "Loaded package1 and keyblob\n"); //Generate keys. keygen(ctxt.keyblob, ctxt.pkg1_id->kb, (u8 *)ctxt.pkg1 + ctxt.pkg1_id->tsec_off); - DPRINTF("generated keys\n"); + DPRINTF("Generated keys\n"); //Decrypt and unpack package1 if we require parts of it. if (!ctxt.warmboot || !ctxt.secmon) { diff --git a/ipl/main.c b/ipl/main.c index 89a5fc4..bca9cfb 100755 --- a/ipl/main.c +++ b/ipl/main.c @@ -680,7 +680,6 @@ int dump_emmc_verify(sdmmc_storage_t *storage, u32 lba_curr, char* outFilename, if(!sdmmc_storage_read(storage, lbaCurrVer, num, bufEm)) { - gfx_con_setfontsz(&gfx_con, 16); EPRINTFARGS("\nFailed to read %d blocks @ LBA %08X\nfrom eMMC. Aborting..\n", num, lbaCurrVer); @@ -691,7 +690,6 @@ int dump_emmc_verify(sdmmc_storage_t *storage, u32 lba_curr, char* outFilename, } if (!(f_read(&fp, bufSd, num, NULL) == FR_OK)) { - gfx_con_setfontsz(&gfx_con, 16); EPRINTFARGS("\nFailed to read %d blocks from sd card.\nVerification failed..\n", num); free(bufEm); @@ -702,7 +700,6 @@ int dump_emmc_verify(sdmmc_storage_t *storage, u32 lba_curr, char* outFilename, if(!memcmp(bufEm, bufSd, num << 9)) { - gfx_con_setfontsz(&gfx_con, 16); EPRINTFARGS("\nVerification failed.\nVerification failed..\n", num); free(bufEm); @@ -732,7 +729,6 @@ int dump_emmc_verify(sdmmc_storage_t *storage, u32 lba_curr, char* outFilename, else { EPRINTF("\nFile not found or could not be loaded.\nVerification failed..\n"); - gfx_con_setfontsz(&gfx_con, 16); return 1; } }