summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Rename CONFIG_NXCONSOLE* to CONFIG_NXTERM*Gregory Nutt2014-09-2069-310/+310
|
* Fix nsh_archinitialize return valueGregory Nutt2014-09-201-4/+6
|
* Update ChangeLogGregory Nutt2014-09-201-0/+5
|
* STM32F4Discovery: Add support for the microSD card slot on the ↵Gregory Nutt2014-09-2010-171/+579
| | | | STM32F4DIS-BB base board
* Add microSD card detect pin definition for the STM32F4DIS-BB boardGregory Nutt2014-09-193-13/+25
|
* Fix missing closing quotation markGregory Nutt2014-09-191-1/+1
|
* Some compiler errors that I added to Ken's code. From Ken PettitGregory Nutt2014-09-191-3/+3
|
* Updated ChangeLogGregory Nutt2014-09-191-1/+3
|
* Emulated SPI FLASH driver for the sim target from Ken PettitGregory Nutt2014-09-195-1/+970
|
* Update README filesGregory Nutt2014-09-192-7/+7
|
* SAMA5D4-EK/nsh: WM8904 support enabled; README updatedGregory Nutt2014-09-183-12/+92
|
* SAMA5D4-EK: Correct WM8904 PCK output selectionGregory Nutt2014-09-182-8/+16
|
* Update ChangelogGregory Nutt2014-09-171-0/+4
|
* SAMA5D4-EK: Add documentation/support for Rev E. board. Refresh NSH ↵Gregory Nutt2014-09-175-26/+108
| | | | configuration. Fix some build errors/warnings introduced with recent work with the knsh configuration
* Ooops... a file that I forgot to add yesterdayGregory Nutt2014-09-171-0/+102
|
* Updata ChangeLogGregory Nutt2014-09-171-1/+13
|
* Fixes to avoid some hang conditions using STM32 CANGregory Nutt2014-09-172-68/+85
|
* Update ChangeLogGregory Nutt2014-09-171-0/+3
|
* Only SAM4 family has RTTDIS bit in the MR register. SourceForge bug #33 from ↵Gregory Nutt2014-09-171-0/+2
| | | | Fabien Comte
* Fix errors in apps/examplex/helloxx and cxxtext Makefiles; update ↵Gregory Nutt2014-09-173-5/+8
| | | | SAMA5D3x-EK/hello defconfig
* Add a sharable version of arm_virtpgaddr()Gregory Nutt2014-09-165-0/+27
|
* Update READMEGregory Nutt2014-09-161-5/+2
|
* Eliminate some nshlib warngingsGregory Nutt2014-09-161-0/+3
|
* More changes so that the KNSH build survives the changes needed for the ELF ↵Gregory Nutt2014-09-163-9/+5
| | | | build
* A couple more changes for clean ELF buildGregory Nutt2014-09-162-7/+8
|
* First round of changes to get the ELF configuration building againGregory Nutt2014-09-1616-48/+37
|
* Update TODO and a READMEGregory Nutt2014-09-162-47/+6
|
* Update ChangeLogsGregory Nutt2014-09-162-0/+13
|
* These files were deleted and moved to a different location (see previos commit)Gregory Nutt2014-09-162-222/+0
|
* remove tailing blank lineGregory Nutt2014-09-161-1/+0
|
* Move common/up_signal_dispatch.c to armv6-m, armv7-m, and armv7-a. The ↵Gregory Nutt2014-09-163-0/+325
| | | | armv7-a version needs to be different to handle the case where we are dispatch kernel mode signals when running under a user mode group
* Correct stack handling is signal deliver to user processesGregory Nutt2014-09-161-23/+13
|
* Move some share-able logic from sama5/sam_pgalloc.c to armv7-a/arm_physpgaddr.cGregory Nutt2014-09-162-2/+2
|
* Move some share-able logic from sama5/sam_pgalloc.c to armv7-a/arm_physpgaddr.cGregory Nutt2014-09-161-1/+1
|
* Move some share-able logic from sama5/sam_pgalloc.c to armv7-a/arm_physpgaddr.cGregory Nutt2014-09-166-78/+330
|
* Update READMEGregory Nutt2014-09-161-0/+4
|
* examples/null/null_main.c: Need to include config.h it order know if this ↵Gregory Nutt2014-09-161-1/+3
| | | | is or is not a kernel build
* Enable kernel stack in SAMA5D4-EK knsh configurationsGregory Nutt2014-09-152-2/+4
|
* Fix some backward conditional compilationGregory Nutt2014-09-152-3/+3
|
* Partial fix to an cache cleaning problemGregory Nutt2014-09-151-5/+8
|
* Fix an error in a debug statementGregory Nutt2014-09-151-1/+1
|
* Eliminate a bug introduced in last checkingGregory Nutt2014-09-151-1/+1
|
* ARMv7-A: Improvements to assertion output for kernel modeGregory Nutt2014-09-151-39/+45
|
* Update ChangeLogGregory Nutt2014-09-151-0/+7
|
* Don't release user stack in kernel build. Already destroyed with all of the ↵Gregory Nutt2014-09-152-6/+22
| | | | address environment
* Update ChangeLogGregory Nutt2014-09-151-0/+3
|
* If we are configured to use a kernel stack while in SYSCALL handling, then ↵Gregory Nutt2014-09-152-0/+45
| | | | we need to switch back to the user stack to deliver a signal
* Fix a typo in system call when fetching parameter from the stack: ↵Gregory Nutt2014-09-153-3/+3
| | | | regs[REG_PC]+4 is the address, not regs[REG_PC+4]
* Update ChangeLogGregory Nutt2014-09-151-0/+10
|
* execl() is not a system interface. It belongs in libc and should not have a ↵Gregory Nutt2014-09-154-7/+1
| | | | system call associated with it.