Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/linux-sunxi/sunxi-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-05-25fexc: Fix thinko in script decompilerBernhard Nortmann
Both the error output in function decompile_section() and the definition of GPIO_BANK_MAX in script.h suffered from an "off by one" logic. The bank numbering in the .bin is based on 1, so it should be added to ('A' - 1) for human-readable output, and the maximum number corresponding to 'N' is 14. This became apparent when trying to translate a fex2bin-compiled a80_optimus_board.bin back to its original .fex equivalent. Signed-off-by: Bernhard Nortmann <bernhard.nortmann@web.de>
2016-05-04Move list declarations from common.h into a separate list.hBernhard Nortmann
Signed-off-by: Bernhard Nortmann <bernhard.nortmann@web.de>
2013-01-19fexc: add support for pio banks up to NAlejandro Mery
needed for A31 support. closes issue #9 Signed-off-by: Alejandro Mery <amery@geeks.cl>
2012-10-01fexc: script: add script_find_entry() helperAlejandro Mery
2012-09-29script: add script_find_section() helperAlejandro Mery
2012-06-16Relicensed as GPLv2+Alejandro Mery
2012-05-11script_bin: move bin structs from script.h to script_bin.hAlejandro Mery
2012-05-06script: moved script_bin_* structs from bin2fex.h to script.hAlejandro Mery
2012-05-06script: changed gpio data to int32_tAlejandro Mery
2012-05-06script: renamed script_*_entry_append() to _new() and changed to receive the ↵Alejandro Mery
section instead of the script
2012-05-06script: rename script_section_append() to script_section_new()Alejandro Mery
2012-05-04script: implement script_gpio_entry_append()Alejandro Mery
2012-05-04script: implemented script_string_entry_append()Alejandro Mery
2012-05-04script: implement script_single_entry_append()Alejandro Mery
2012-05-04script: add recursive script_delete(), script_section_delete() and ↵Alejandro Mery
script_entry_delete()
2012-05-04script: getting started with the script treeAlejandro Mery