From 3545d2b12e97346344df91f99497b8a4ffc77410 Mon Sep 17 00:00:00 2001 From: Markus Birth Date: Sat, 12 Oct 2019 17:29:45 +0200 Subject: [PATCH] Add reading and decoding RGN structure. --- grmn/rgn.py | 111 +++++++++++++++++++++++++++++++++++++++++++++++---- rgnstruct.py | 2 +- 2 files changed, 104 insertions(+), 9 deletions(-) diff --git a/grmn/rgn.py b/grmn/rgn.py index 8e22c62..9fc836d 100644 --- a/grmn/rgn.py +++ b/grmn/rgn.py @@ -1,17 +1,30 @@ # -*- coding: utf-8 -*- # Thanks to Herbert Oppmann (herby) for all your work! +from .ansi import RESET, RED from .chksum import ChkSum from .rgnbin import RgnBin from struct import unpack import configparser RGN_SIG = b"KpGr" +DEFAULT_BUILDER = "SQA" # RGN structure might be: RGN > BIN or RGN > RGN > BIN # RGN = outside hull # BIN = firmware + hwid + checksum +REGION_TYPES = { + 0x000a: "dskimg.bin", + 0x000c: "boot.bin", + 0x000e: "fw_all.bin", + 0x0010: "logo.bin", + 0x004e: "ZIP file", + 0x0055: "fw_all2.bin", + 0x00f5: "GCD firmware update file", + 0x00ff: "pk_text.zip", +} + class ParseException(Exception): pass @@ -32,15 +45,14 @@ class Rgn: if sig != RGN_SIG: raise ParseException("Signature mismatch ({}, should be {})!".format(repr(sig), repr(RGN_SIG))) self.version = unpack("