summaryrefslogtreecommitdiff
path: root/apps/system/hex2bin
Commit message (Collapse)AuthorAgeFilesLines
* MAINOBJ needs to be added to object list in many MakefileGregory Nutt2014-09-111-1/+1
|
* Changes to many Makefiles. For kernel buil object containing main cannot go ↵Gregory Nutt2014-09-071-11/+29
| | | | into library because of name collisions. The object file must be handled as a special case in every Makefile
* Determine the main object name from the main source name in every kernel ↵Gregory Nutt2014-09-071-0/+1
| | | | build Makefile
* Add an nm command after every kernel build link to show if there are any ↵Gregory Nutt2014-09-071-0/+1
| | | | undefined symbols
* Add the main object to the list objects to link in every kernel build link ↵Gregory Nutt2014-09-071-1/+1
| | | | command
* Add the main object to the dependencies for the kernel buildGregory Nutt2014-09-071-1/+1
|
* If now a kernel build, then add the main object in with all of the restGregory Nutt2014-09-071-0/+4
|
* Update apps/examples/helloxx/MakefileGregory Nutt2014-09-071-1/+1
|
* Customize the program name in the generic setup that was added to each ↵Gregory Nutt2014-09-061-1/+1
| | | | makefile that installs a program
* Add generic setup logic to every Makefile that installs a program. Each ↵Gregory Nutt2014-09-061-0/+9
| | | | will need customization
* Fix all install targetsGregory Nutt2014-09-061-4/+4
|
* Oops wrong elseGregory Nutt2014-09-061-1/+1
|
* Add missing else from last big changeGregory Nutt2014-09-061-0/+1
|
* Add program installation for CONFIG_BUILD_KERNEL in all Makefiles that build ↵Gregory Nutt2014-09-061-0/+9
| | | | a main()
* Use more standard *argv[] instead easier **argvGregory Nutt2014-09-062-2/+2
|
* With kernel build, entry point to all tasks is main, not some xyz_mainGregory Nutt2014-09-062-0/+8
|
* Add an install target to all makefiles. For the import build, the top-level ↵Gregory Nutt2014-09-061-0/+2
| | | | Makefile now does two passes: (1) builds libapp.a, then (2) installs the programs (not yet finished)
* The hex2bin library did not build with debug offGregory Nutt2014-06-261-1/+1
|
* hex2bin: Add alternative interface layers to illustrate how to load programsGregory Nutt2014-06-166-17/+245
|
* hex2bin: Fix un-necessary seeks because expected address was not being updatedGregory Nutt2014-06-161-1/+7
|
* hex2mem: Like hex2bin, but writes Intel HEX files directly to memoryGregory Nutt2014-06-164-15/+346
|
* hex2bin: Fix some indexing errorsGregory Nutt2014-06-161-25/+30
|
* hex2bin: Fix a typo in the stack sizeGregory Nutt2014-06-161-1/+1
|
* hex2bin: Needs a little larger stackGregory Nutt2014-06-162-2/+17
|
* hex2bin: Various bugfixesGregory Nutt2014-06-161-10/+17
|
* hex2dump: Needs to read new character at end of the loopGregory Nutt2014-06-151-2/+7
|
* hex2bin: Start code should not be in bufferGregory Nutt2014-06-151-1/+8
|
* Fix an error in exec(). argv[] has not being passedGregory Nutt2014-06-151-2/+6
|
* Add conversion of Intel HEX to binaryGregory Nutt2014-06-155-0/+1123