* tools/Config.mk - Add empty definition POSTBUILD
* tools/Makefile.unix/win - Replace CXD56xx specific logic with $(call POSTBUILD)
* boards/arm/cxd56xx/scripts/Config.mk - Add POSTBUILD definitions with logic removed from Makefile.unix/win
* boards/arm/cxd56xx/spresense/scripts/Make.defs - Include the CXD56xx Config.mk immediately after tools/Config.mk so that the empty POSTBUILD definition will be replaced with the correct one
NOTE: There is a precedent for this approach. This is the way that other architecture-specific build options are implemented. See, for example, tools/zds/Config.mk
If we are going to use this tool for things like
git pre-commit hook or CI workflow, it's critical to
avoid false alarms.
This reverts commit de764af9aa.
Squashed commit of the following:
commit 685951b5385062035ac558df1112353c9441c910
Author: Adam Feuer <adam@starcat.io>
Date: Mon Feb 24 16:33:00 2020 -0800
fixed typo in readme
commit ad1d3289b48af0de3095e3f365429017e57278b3
Author: Adam Feuer <adam@starcat.io>
Date: Mon Feb 24 16:07:48 2020 -0800
simulator host route helper script and docs
Squashed commit of the following:
commit cf5cddcf55a155303cb5abb1aa026f6dcaf369ca
Author: Adam Feuer <adam@starcat.io>
Date: Mon Feb 24 15:50:40 2020 -0800
syslog on console to fix compile error
commit def1bb73fcfbc8b115c55d9f4544b97d583807f2
Author: Adam Feuer <adam@starcat.io>
Date: Mon Feb 24 15:46:13 2020 -0800
formatting as per PR feedback; removed ping
commit b179fd8831b77fbbe85527a4ab3161e1f1ca1e43
Author: Adam Feuer <adam@starcat.io>
Date: Mon Feb 24 15:45:49 2020 -0800
formatting as per PR feedback
commit e3280bede9798d9a00b118e126c02ceab497e33a
Author: Adam Feuer <adam@starcat.io>
Date: Mon Feb 24 13:56:50 2020 -0800
add simhostroute.sh description to readme
commit 09a6b0ca3bacf005c2a79102141ae8cc3eb91849
Author: Adam Feuer <adam@starcat.io>
Date: Sun Feb 23 17:38:40 2020 -0800
fixed error in simhostroute.sh usage docs
commit d838582119d43ee2002ce3808051c82b23e98c58
Author: Adam Feuer <adam@starcat.io>
Date: Sun Feb 23 17:28:35 2020 -0800
added tcpblaster defconfig and updated docs
commit af3d2d6591f12d1127027fdd363858052094e624
Author: Adam Feuer <adam@starcat.io>
Date: Sun Feb 23 17:21:29 2020 -0800
added info about capabilities and running as root
commit 6359cfdfedefc818b169455401942d3d33a59f41
Author: Adam Feuer <adam@starcat.io>
Date: Sun Feb 23 17:20:42 2020 -0800
updated network linux readme
commit 47feb08aa74e4b1fc6c802567bc777d31e7c9a83
Author: Adam Feuer <adam@starcat.io>
Date: Sun Feb 23 17:09:04 2020 -0800
initial addition
This tools needs to CD to directory holding the library because it requires that the library be in the current working directory when objects are inserted. Previously, the tool did this by creating an absolute path to the object file itself. So instead of the object file being in the current directory and the library in a directory at an absolute path, this tool used an abolte path to the object file with the library in the current directory.
For the most part, that worked fine. However, in the apps directory the object file names are greatly extended in length. In the object file name was extended to a full absolute path and these huge file names were were exceeding some internal limit within the ZDS-II librarian. But useing shorter, relative paths, we were able to avoid hitting this limit and the entire build completed correctly.
* tools/zds/zds_Config.mk: Move boards/z80/ez80/scripts/eZ80_Config.mk to tools/zds/zds_Config.mk where it can be shared by other ZDS-II platforms.
* boards/z16/z16f: Duplicate changes for new ZDS-II support from ez80
* boards/z80/z8: Duplicate changes for new ZDS-II support from ez80
* arch/z16/src/z16f/Toolchain.defs: Create required Toolchain.defs file for Z16f
Eliminate the MOVEOBJ definition from tools/Config.mk, Makefiles, and other locations. The MOVEOBJ definition was used to work around the case where the object output of a compile or assemble is in a different directory than the source file. The ZDS-II tools have no command line option to perform this move; MOVEOBJ handled the move as a post-compiler operation.
MOVEOBJ is no longer needed because this the ez80 COMPILE and ASSEMBLE definitions now handle all of the object file movement cases.
tools/zds/zdsgen.c: Remove this program. It should have been a simpler way to manage ZDS-II compiler and assember differences. However, the compiler arguments needed to pass through too many layers of bash command line modifications and, as a result, it was not possible to retain quotes on critical strings. This approch was abandoned for an alternative approach.
boards/z80/ez80/scripts/eZ80_Config.mk: Add definitions to move the object files as necessary. This seems to work well and is implemented for both native and Cygwin Windows build -- but only for the Z20x.
And additional wrapper that is needed for the ZDS-II build is a wrapper for the compiler and assemble. This is needed because the ZDS-II cannot control the name or location of the output of the output object file: it is always in the same directory as the source file and with the same name as the source file except with the .obj extension.
This was handled in the past with the MOVEOBJ definition which was specifically called Makefiles to move the objects to the correct position. However, now there is a new behavior: Output object files may also be named differently with added decoration in the file name. This is done in the current apps/ directory build.
There is currently some ugly implementation that includes a long sequence of Bash code to handle the moving and/or renaming. There is nothing in place for the Windows native case.
This wrapper, when complete, will clean up the Makefiles, improve build performance, and provide a solution that is portable to both the Cywin/MSYS environment as well as to the Windows native environment.
This zdsar librarian wrapper is code complete and has no known bugs.
However, there are still some build instabilities so perhaps there
are still some bug to be identified. Or perhaps there are other
undiscovered bugs unrelated to zdsar which appears to be behaving
correctly in all cases.
It will take some additional testing know for sure.
A pointer to a string in a memory buffer was losing its value. The reason was that the buffer was occasionally being used for other purposes. The fix is to strdup() the string so that there is a private, protected copy.
tools/zds: A new tool sub-directory intended to hold tools for making life working with the ZDS-II toolchain less painful.
tools/zds/zdsar.c: This is a wrapper around the ZDS_II librarian. It simplifies the build scripts by replacing large sequences of complex Bash script that were added to the build files. Not only does this clean up the build files but it also improves performance and, more importantly, provides a common solution for the Windows native build case. This tool should work with all ZDS-II based platforms including z8, zNeo, and ez80.
tools/README.txt: Add a brief description about the zds sub-directory. Also re-ordered some tool descriptions. They are supposed to be in alphabetical order, but this seems to have fallen apart.
boards/z80/ez80/scripts/eZ80_Config.mk: Updated to use tools/zds/zdsar.exe.
This includes some fixes for the ez80 build including:
1. Ability to handle decorated object file names,
2. Ability to handle libraries described with absolute paths
This commit address only the POSIX build and needs to be updated
for the Windows native build.
to avoid shell complain that @echo can't find if the variable expand in the compound
command(e.g. ARLOCK) and remove $(Q) before $AR so the result is almost same as before.
To ensure size_t same as toolchain definition in the first place and rename CXX_NEWLONG to ARCH_SIZET_LONG. The change also check whether __SIZE_TYPE__ exist before CONFIG_ARCH_SIZET_LONG so our definition can align with toolchain(gcc/clang) definition automatically.
Make 'checkpatch.sh -c commits' and 'checkpatch.sh -p patches' do full
file check as default, while 'checkpatch.sh -r -c commits' and 'checkpatch.sh
-r -p patches' do ranges check only.
Eliminate warnings. Ignore mixed case identifies beginning with PRIx.
These most likely come from inttypes.h and we nxstyle must tolerate
those definitions even though they do not follow the coding style.
Namely this changes HOSTOS for macOS from "Other" to "Darwin".
Also, suppress the following harmless messages during a "make":
(Missing redirect in tools/Makefile.host)
uname: illegal option -- o
usage: uname [-amnprsv]
Consider junk.c for example:
/****************************************************************************
* xx
****************************************************************************/
/****************************************************************************
* Private Types
****************************************************************************/
struct foo_s
{
int bar;
};
/****************************************************************************
* Public Functions
****************************************************************************/
int dofoo(int barin)
{
barout = barin;
return barout;
}
nxstyle not detects these problems:
$ tools/nxstyle.exe junk.c
junk.c:11:0: error: Blank line before opening left brace
junk.c:21:0: error: Blank line before opening left brace
This capability was erroneously removed by a previous commit. This setting is necessary when the C++ code generated by the compiler uses the new and delete operators provided in libs/libxx.
Here is an example of an error scenario where this capability is required:
1. CONFIG_CXX_NEWLONG=y in the defconfig file
2. This causes libs/libxx to to generate a delete operator of this form:
void delete(void*, unsigned long);
3. But the compiler expects to link with a delete operator of this form:
void delete(void*, unsigned int);
That results in a link-time failure and the ONLY solution for avoiding that link time failure (short of some complete redesign) is to have a control over the CONFIG_CXX_NEWLONG setting and make sture that it is always disabled for that toolchain.
Other toolchains will require that CONFIG_CXX_NEWLONG=y in all cases. This cannot be predicted because it is dependndent on the definitions provided by C libraries and header files that were build into binary toolchain.
CI should know the build status of testbuild.sh, so use -k make flag option as default
instead of -i ignore-error option. Then use fail to record build result. In addition,
refresh .config if toolchain updated.
Change-Id: I182c2b2db489e6ccb0a79fdc664072d19974c3ca
Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
1.Scan the folder under nuttx/boards by prefix /
2.Skip the specified configuration by prefix -
Change-Id: Ibb67f2c6b96cd8e439d94bf71d098c1fd9e5a79d
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
Make sure kconfig-tweak disables CONFIG_TOOLCHAIN_WINDOWS under linux host, or it would break the build when using testbuild.sh for some configs.
Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
1. Can't pipe uname stderr output to /dev/null. /dev/null does not exist in the Windows native enviornment.
2. Don't test if CONFIG_WINDOWS_NATIVE is defined. Tht leads to a "chicken'n'egg" problem: We need to build configure.c in order to configure the system, but we can't get the CONFIG_WINDOWS_NATIVE until after the system is configured.
3. The default name of the MinGW GCC compiler is mingw32-gcc.exe, not mingw-gcc.exe
Commit cf5d17f795 added logic to detect #define pre-processor definitions outside of the "Pre-processor Definitions" file section. That commit was verified against numerous .c source files. But not against any .h header files.
When run against a header file, that change causes a false alarm warning like:
file:line:pos: warning: #define outside of 'Pre-processor Definitions' section
That is caused the idempotence, guard definition that must appear in the header file BEFORE the first file section.
This commit adds logic to nxstyle to ignore pre-processor definitions in header files that occur before the first file section is encountered.
1. No .c file should include a "Public Types" section. Only a header file can define a public type. A .c file can only define a private type. Several files contained private type definitions. The section that they were defined in, however, was incorrectly named "Public Types." Those were easilty changed to "Private Types" which is what they are.
2. No .c file should include a "Public Function Prototypes" section. All global function prototypes should be provided via a header file and never declared with a .c file.
For No. 2, I corrected as many cases as was reasonable for the time that I had available. But there are still a dozen or so .c files that declare "Public Function Prototypes" within a .c file. This is bad programming style. These declarations should all be moved to the proper header files.
* tools/nxstyle: Added logic to parse section headers (like Included files, Pre-processor Definitions, etc.) and to assure that the section headers are correct for the file type. Also (1) verify that #include appears only in the 'Included Files' section and that (2) #define only occurs in the Pre-processor definition section.
Right now, there are several places where that rule is not followed. I think most of these are acceptable so these failures only generate warnings, not errors. The warning means that we need to go look at the offending #define or #include and decide if it is a acceptable usage or not.
the width of all block comments. Includes a check to assure that all block
comments use the same line width.
Verified against all .c files under /sched. There were a few cosmetic changes to the coding style under /sched to account to new, correctly detected problems in the /sched files.
* tools/nxstyle.c: Donot check unknown file extension files
nxstyle only support c soure file and header file check, donot check
other unknown file extension files.
* tools/checkpatch.sh: Add checkpatch.sh script based on nxstyle tool
Usage:
checkpatch.sh patch-list // default as patch list
checkpatch.sh -p patch-list
checkpatch.sh -c commit-list
checkpatch.sh -f file-list
checkpatch.sh - // read from stdin, which used by git pre-commit hook
And git pre-commit hook could use checkpatch.sh as below:
git diff --cached | ./tools/checkpatch.sh -
Usage: ./nxstyle -r start,count filename
nxstyle with -r option used to parse the range lines rather than the whole file.
Change-Id: I58ec56511fde14d6ec914400a7849e69960a3711
Signed-off-by: liuhaitao <liuhaitao@xiaomi.com>
* Simplify EINTR/ECANCEL error handling
1. Add semaphore uninterruptible wait function
2 .Replace semaphore wait loop with a single uninterruptible wait
3. Replace all sem_xxx to nxsem_xxx
* Unify the void cast usage
1. Remove void cast for function because many place ignore the returned value witout cast
2. Replace void cast for variable with UNUSED macro
Author: Gregory Nutt <gnutt@nuttx.org>
Run all .c and .h modified in PR through nxstyle.
Author: Masayuki Ishikawa <masayuki.ishikawa@gmail.com>
feature k210 (#16)
* arch: risc-v: Add support for __LP64__ to types.h
* arch: risc-v: Add support for RV64GC to common files
* arch: risc-v: Add support for Kendryte K210 processor (RV64GC)
* boards: risk-v: Add support for Sipeed Maix Bit with K210
* tools: Add support for Kendryte K210 processor
tools/nxstyle.c: Output compiler like error format. Added features
Uses getops to pars command line.
Supports
-s silence all output
-g provide a PASS fail message
* tools/README.txt: Update with new nxstyle options
1.merge CONFIG_GIT_REVISION_STR into CONFIG_VERSION_BUILD
2.merge gen_getrev.sh into version.sh
3.generate version number if needed
Here is a sample output:
nsh> uname -a
NuttX 8.2 59fd8e12d3-dirty Dec 12 2019 15:48:00 sim sim
nsh> cat /proc/version
NuttX version 8.2 59fd8e12d3-dirty Dec 12 2019 15:48:01
This change was motivated by the presence of the mkimage.sh file under tools. That is the tool that created the RRLOAD binary format. That bash script has a GPL license and, hence, may not be included in an Apache-licensed project.
HiFive1 with qemu
* arch: risc-v: Add include/.gitignore
* arch: risc-v: Add src/.gitignore
* arch: risc-v: Remove uncommon function prototypes in include/irq.h
* arch: risc-v: Add missing symbols and function prototypes in src/common/up_internal.h
* arch: risc-v: Add src/common/up_modifyreg32.c
* arch: risc-v: Enable include Make.dep in src/Makefile
* arch: risc-v: Fix stack coloration in common/up_createstack.c
* arch: risc-v: Add common/up_puts.c
* arch: risc-v: Add common/up_checkstack.c
* arch: rv32im: Move all logics from up_dumpstate.c to up_assert.c
This change is same as other architectures like arm/src/armv7-m
* arch: Select ARCH_HAVE_STACKCHECK for RISC-V in Kconfig
* arch: risc-v: Add SiFive fe310 processor
NOTE: Currently only tested with qemu
* boards: hifive1-revb: Add SiFive hifive1-revb board
NOTE: Currently only tested with qemu
* tools: Add fe310 processor to configure.sh
Approved-by: Alan Carvalho de Assis <acassis@gmail.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
This change decouples that upper activity-based logic from the lower random walk logic and allows use of other upper state detection logic (such as a custom, application-specific state machine).
This port was effort of a number of people, I rather arbitrarily gave authorship to Guiding Li because he has the largest number of fundamental quashed commits from the Xiamoi repository.
Squashed commit of the following:
Author: Xiang Xiao <xiaoxiang@pinecone.net>
include/nuttx/b2c.h and libx/libc/string: Add non-standard string functions to deal with cases where there are more than 8-bits in a type char.
Author: Gregory Nutt <gnutt@nuttx.org>
Fix several build issues/missing definitiona needed for OpenAMP build in drivers/.
Add OpenAMP code has been reviewed and ran through tools/nxstyle (with all reports accounted for).
Author: Xiang Xiao <xiaoxiang@xiaomi.com>
tools/: Fix the minor issue in Makefile
Author: Gregory Nutt <gnutt@nuttx.org>
drivers/rptun/rptun.c: Review for coding standard. Run against tools/nxstyle.
tools/LibTargets.mk: Fix some TABs that were turned into spaces by a copy-paste.
fs/hostfs: Add configure and build support for hostfs RPC.
drivers/timer: Add configure and build support for syslog RTC.
drivers/syslog: Add configure and build support for syslog RPC.
drivers/serial: Add configure and build support for serial RPC.
Kconfig, tools/*.mk. openamp/: Add basic OpenAMP build support.
drivers/rptun: Add configure and build support for OpenAMP tunnel drivers.
drivers/net: Update Make.defs and Kconfig for OpenSDA support.
Remove drivers/clk/clk-rpmsg.c drivers/power/rpmsg_regulator.c. These depend on upstreaming support for a new subsystem based on the clk/regulator is model from Linux. Removed because we want to separate the activities. We will just try to get the basic OpenAMP support in place for now.
Remove drivers/misc/misc_rpmsg.c and include/nuttx/misc/misc_rpmsg.h. These are specific to the Xiaomi application.
Author: zhuyanlin <zhuyanlin@pinecone.net>
This commit brings in the OpenAMP OS driver/RPC components from https://github.com/FishsemiCode/nuttx. Initial commit is source files only. Additional changes to Kconfig and Make.defs files still needed.
Author: Jianli Dong <dongjianli@pinecone.net>
This commit brings in the OpenAMP OS driver/RPC components from https://github.com/FishsemiCode/nuttx. Initial commit is source files only. Additional changes to Kconfig and Make.defs files still needed.
Author: Guiding Li <liguiding@pinecone.net>
This commit brings in the OpenAMP OS driver/RPC components from https://github.com/FishsemiCode/nuttx. Initial commit is source files only. Additional changes to Kconfig and Make.defs files still needed.
1. Serial (UART) driver (13 ports)
2. Ethernet driver
This port is provided on two boards
1. RSK RX65N-2MB
2. GR-Rose
The port is built on Cygwin environment.
As part of this port, we have created two documents
1. Readme.txt for each board
2. User manual to provide information about development environment setup
Both these documents are placed under
1. /boards/renesas/rx65n/rx65n-grrose
2. /boards/renesas/rx65n/rx65n-rsk2mb
We have run 'nxstyle' for coding guidelines and 'ostest' for testing NuttX features on test platform.
We have shared the log with no errors as confirmation of valid port.
1. Remove libcxx duplication in FlatLibs.mk and from kernel space
2. Remove libpass1 from KernelLibs.mk since kernel build doesn't support the two pass mode
3. Remove FSDIR related comment since file system cannot be disabled now
It appears Yann Morin's kconfig-frontends project has gone offline and
the website at http://ymorin.is-a-geek.org/projects/kconfig-frontends
is not responding. Until we can identify a "proper" upstream project,
use the snapshot in NuttX tools repository.
Replace (almost) all links to Yann Morin's kconfig-frontends in the
docs to point to the NuttX tools snapshot instead, with the following
exceptions:
nuttx/Changelog for version 6.17, 2012-04-14: Leave this historical
information intact.
nuttx/README.txt: Document the source of our snapshot.
Makefile updates
* Save CONFIG_ARCH_BOARD_CUSTOM when running 'make savedefconfig'
* Only use PCLKSEL0 for ADC on LPC176x family.
* Made grep search expression more specific.
* Added missing '=' to second grep
* Revert "Only use PCLKSEL0 for ADC on LPC176x family."
This reverts commit 835b5e9d6fcbea02cb0203c063b0e121fa57ba9e.
* Revert "Added missing '=' to second grep"
This reverts commit 38b51f0c6d9612de755c102a53846ca7488cdf14.
* Added a missing '=' in the second grep statement
* When linking $(ARCH_SRC)/drivers, print what is actually happening
* Save CONFIG_ARCH_BOARD_CUSTOM_DIR_RELPATH when running "make savedefconfig"
* Revert changes to lines 607-608 related to CONFIG_ARCH_BOARD_CUSTOM
Approved-by: Gregory Nutt <gnutt@nuttx.org>
report git info on /proc/gitrev
* report git info on /proc/gitrev
git info reported: branch, version, git hash, hostname, usr, build date
* use existing .version and procfs for git info
* reduce script's coupling
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Fixed CONFIG_ARCH_BOARD_CUSTOM based builds
Essentially reverts Added a missing '=' in the second grep statement
it was not missing it was deliberately not in the second grep
Adding a '=' in the second grep statement caused the "children"
of CONFIG_ARCH_BOARD_CUSTOM;
namely:
CONFIG_ARCH_BOARD_CUSTOM_DIR
CONFIG_ARCH_BOARD_CUSTOM_DIR_RELPATH
CONFIG_ARCH_BOARD_CUSTOM_NAME
to be lost on a savedefconfig
To see the issue run make oldconfig; make savedefconfig; make oldconfig
Approved-by: Gregory Nutt <gnutt@nuttx.org>
tools: unix: add support for common board folder
* tools: unix: add support for common board folder
this patch adds support for a common board folder and simplifies the code
and maintenance on boards that share the same code
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* cxd56xx: migration to a common folder
This is the first platform to be migrated to the new common folder
structure.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
boards: add stub drivers folder for later use
* boards: add stub drivers folder for later use
The board/drivers folder is added for future use.
In this folder we should place drives that are platform specific and
depend on HW that is present only on a specific platform.
NOTE: All shared drivers should go to the regular driver folder
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tools: shift BOARD_DIR one level up
In preparation for drivers and common folders we are moving the
BOARD_DIR path up one level.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tools: add drivers/platform symlink
Link the boards/<arch>/<chip>/drivers dir to drivers/platform
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* drivers: add platform specifc drivers extension
There are platforms that use specific drivers and we should be able to
include those drivers in the build
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* board: cxd56xx: drivers: add AK09912 driver for SCU
This is a platform specific driver connected on the SCU unit.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Added a missing '=' in the second grep statement
* Save CONFIG_ARCH_BOARD_CUSTOM when running 'make savedefconfig'
* Only use PCLKSEL0 for ADC on LPC176x family.
* Made grep search expression more specific.
* Added missing '=' to second grep
* Revert "Only use PCLKSEL0 for ADC on LPC176x family."
This reverts commit 835b5e9d6fcbea02cb0203c063b0e121fa57ba9e.
* Revert "Added missing '=' to second grep"
This reverts commit 38b51f0c6d9612de755c102a53846ca7488cdf14.
* Added a missing '=' in the second grep statement
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Save CONFIG_ARCH_BOARD_CUSTOM when running 'make savedefconfig'
* Save CONFIG_ARCH_BOARD_CUSTOM when running 'make savedefconfig'
* Made grep search expression more specific.
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Provided changes add option (CONFIG_EXECFUNCS_GENERATE_SYSTEM_SYMTAB) to build complete list of available functions and syscalls automatically. The symbolic table is generated in form libsymtab.a which can be reused by application or directly pull in when "g_symtab" and "g_nsymbols" variables are requested by EXECFUNCS configuration.
I have tried to follow mechanisms for library compilation in different kernel protection modes but tested only flat no-MMU build. The basic assumption is that this library and libraries providing syscall stubs and C-library functions are available in user-space context and initial application (usually NSH) registers the symbol table through IOCTL. The table can be reused then by another applications in their address space as kernel allows. Simple for flat or protected mode, I am not sure if really support in MMU mode. It is highly probable that I have made some mistake, overlooked something, but functionality is optional (should not cause troubles in any mode if disabled) and main purpose is to lower memory overhead when more applications are loaded on memory constrained system which usually use direct kernel calling without protection or address space separation. If the table should be provided by kernel to applications then makefiles has to be adjusted.
group boards based on chip
* a1x: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* am335x: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* c5471: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* scx56xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* dm320: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* efm32: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* imx6: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* imxrt: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* kinetis: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* kl: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lc823450: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc17xx_40xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc214x: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc2378: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc31xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc43xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc54xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* max326xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* moxart: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nrf52: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nuc1xx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam34: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samd2l2: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samd5e5: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samv7: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f0l0g0: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f7: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32h7: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l4: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* str71x: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tiva: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tms570: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* xmc4: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* p112: typo fix
this boars is a z80 board and was moved to the wrong arch
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* avr: at32uc3: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* avr: at90usb: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* avr: atmega: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* hc: mcs92s12ne64: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mips: pic32mx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mips: pic32mz: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* misoc: lm32: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* or1k: mor1kx: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* renesas: m32262f8: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* renesas: sh7032: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* risk-v: gap8: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* risk-v: nr5m100: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sim: sim: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* x86: qemu: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* xtensa: esp32: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z16: z16f2811: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z80: ez80: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z80: z180: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z80: z80: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z80: z8: group boards based on chip
All boards based on the same chip are moved to the same folder
following the arch layout <arch>/<chip>/<board>.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tools: update tools for boards based on chip
This patch updates only the linux tools
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pcduino-a10: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* beaglebone-black: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* c5471evm: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* spresense: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ntosd-dm320: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* efm32-g8xx-stk: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* efm32gg-stk3700: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-efm32g880f128-stk: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sabre-6quad: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* imxrt1050-evk: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* imxrt1060-evk: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k28f: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k64f: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k66f: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* kwikstik-k40: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* teensy-3.x: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* twr-k60n512: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* twr-k64f120m: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-kl25z: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-kl26z: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* teensy-lc: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lc823450: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lincoln60: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4088-devkit: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4088-quickstart: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpcxpresso-lpc1768: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mbed: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mcb1700: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-lpc1766stk: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* open1788: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pnev5180b: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* u-blox-c027: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* zkit-arm-1769: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mcu123-lpc214x: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* zp214xpa: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-lpc2378: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ea3131: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ea3152: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-lpc-h3131: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* bambino-200e: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4330-xplorer: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4337-ws: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4337-evb: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4370-link2: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpcxpresso-lpc54628: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* max32660-evsys: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* moxa: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nrf52-generic: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nutiny-nuc120: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* arduino-due: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* flipnclick-sam3x: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam3u-ek: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4cmp-db: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4e-ek: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4l-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4s-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4s-xplained-pro: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d2-xult: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d3-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d3x-ek: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d4-ek: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samd20-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samd21-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* saml21-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* metro-m4: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* same70-xplained: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* same71-xult: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* axoloti: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* clicker2-stm32: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* cloudctrl: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* fire-stm32v2: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* hymini-stm32v: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* maple: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mikroe-stm32f4: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f103rb: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f207zg: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f302r8: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f303re: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f303ze: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f334r8: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f410rb: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f446re: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f4x1re: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-1152re: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-e407: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-h405: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-h407: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-p107: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-p207: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-p407: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* omnibusf4: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* photon: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* shenzou: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm3210e-eval: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm3220g-eval: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm3240g-eval: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32_tiny: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32butterfly2: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f103-minimum: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f334-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f3discovery: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f411e-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f429i-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f4discovery: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32ldiscovery: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32vldiscovery: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* viewtool-stm32f107: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* b-l072z-lrwan1: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f072rb: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f091rc: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f071rg: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l073rz: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f051-discovery: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f072-discovery: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-144: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f746-ws: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f746g-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f746g-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-h743zi: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* b-l475e-iot01a: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l432kc: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l432re: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l476rg: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l496zg: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l476-mdk: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l476vg-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l4r9ai-disco: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-strp711: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* dk-tm4c129x: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* eagle100: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ekk-lm3s9b96: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* launchxl-cc1310: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* launchxl-cc1312r1: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm3s6432-s2e: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm3s6965-ek: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm3s8962-ek: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm4f120-launchpad: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm4c123g-launchpad: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm4c1294-launchpad: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* launchxl-tms57004: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tms570ls31x-usb-kit: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* xmc4500-relax: defconfig update
add ARCH_CHIP to defconfig
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* zp214xpa: typo fix
add missing tools/oocd.sh
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
group boards by architecture
* z80: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z16: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* xtensa: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* x86: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sim: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* risc-v: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* renesas: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* or1k: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* misoc: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mips: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* hc: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* avr: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* arm: group boards by architecture
all boards that share the same architecture are moved to the same arch
folder following the soc layout
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* boards: group boards by architecture
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
The legacy '/' delimiter is still supported but not recommend and not advertised.
Squashed commit of the following:
Update configurations instructions in more README.txt files to show ':' delimiter vs '/' delimiter.
Update configurations instructions in various README.txt file to show ':' delimiter vs '/' delimiter.
tools: Update all configuration-related tools to accept ':' separator between board and configuration name.
move board configs to configs folder
* amber: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* arduino-due: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* arduino-mega: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* avr32dev1: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* axoloti: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* b-l072z-lrwan1: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* b-l475e-iot01a: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* bambino-200e: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* beaglebone-black: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* c5471evm: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* clicker2-stm32: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* cloudctrl: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* demo9s12ne64: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* dk-tm4c129x: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ea3131: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ea3152: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* eagle100: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* efm32-g8xx-stk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* efm32gg-stk3700: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ekk-lm3s9b96: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* esp32-core: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ez80f910200kitg: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ez80f910200zco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* fire-stm32v2: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* flipnclick-pic32mz: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* flipnclick-sam3x: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k28f: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k64f: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k66f: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k125z: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* freedom-k126z: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* gapuino: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* hymini-stm32v: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* imxrt1050-evk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* imxrt1060-evk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* kwikstik-k40: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* launchxl-cc1310: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* launchxl-cc1312r1: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* launchxl-tms57004: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lc823450-xgevk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lincoln60: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm3s6432-s2e: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm3s6965-ek: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm3s8962-ek: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lm4f120-launchpad: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4088-devkit: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4088-quickstart: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4330-xplorer: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4337-ws: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4357-evb: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpc4370-link2: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpcxpresso-lpc1768: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* lpcxpresso-lpc54628: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* makerlisp: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* maple: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* max32660-evsys: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mbed: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mbc1700: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mcu123-lpc214x: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* metro-m4: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* micropendous3: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mikroe-stm32f4: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* mirtoo: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* misoc: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* moteino-mega: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* moxa: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ne64badge: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nr5m100-nexys4: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nrf52-generic: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ntosd-dm320: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-144: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f072rb: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f091rc: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f103rb: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f207zg: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f302r8: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f303re: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f303ze: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f334r8: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f410rb: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f446re: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-f4x1re: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-g071rb: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-h743zi: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l073rz: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l152re: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l432kc: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l452re: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l476rg: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nucleo-l496zg: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* nutiny-nuc120: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-efm32g880f128-stk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-lpc-h3131: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-lpc1766stk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-lpc2378: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-e407: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-h405: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-h407: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-p107: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-p207: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-stm32-p407: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimex-strp711: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* olimexino-stm32: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* omnibusf4: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* open1788: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* or1k: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* p112: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pcduino-a10: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* photon: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pic32mx-starterkit: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pic32mx7mmb: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pic32mz-starterkit: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* pnev5180b: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* qemu-i486: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sabre-6quad: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam3u-ek: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4cmp-db: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4e-ek: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4l-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4s-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sam4s-xplained-pro: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d2-xult: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d3-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d3x-ek: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sama5d4-ek: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samd20-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samd21-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* same70-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* saml21-xplained: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* samv71-xult: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* shenzhou: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sim: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* skp16c26: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* spresense: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm3210e-eval: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm3220g-eval: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm3240g-eval: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32_tiny: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32butterfly2: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f051-discovery: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f072-discovery: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f103-minimum: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f334-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f3discovery: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f411e-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f429i-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f4discovery: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f746-ws: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f746g-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32f769i-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l476-mdk: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l476vg-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32l4r9ai-disco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32ldiscovery: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* stm32vldiscovery: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* sure-pic32mx: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* teensy-2.0: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* teensy-3.x: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* teensy-lc: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tm4c123g-launchpad: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tm4c1294-launchpad: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tms570ls31x-usb-kit: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* twr-k60n512: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* twr-k64f120m: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* u-blox-c027: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* ubw32: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* viewtool-stm32f107: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* us7032evb1: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* xmc4500-relax: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z16f2800100zcog: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z80sim: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z8encore000zco: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* z8f64200100kit: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* zkit-arm-1769: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* zp214xpa: move board configs to configs folder
This is a cleanup that will move all configs from the board folder to
a board/configs folder
NOTE:
The configure.sh script must be used with the new path <board-name>/configs/<config-name>
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tools: configure.sh: adjust the script to use boards/configs folder
Script update to pick the configs from the new configuration folder
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* tools: configure.bat: adjust the script to use boards/configs folder
Now we update the script to pick the configs from the new configuration folder
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Move boards to boards folder
* boards: rename configs folder to boards
This is the proposed layout after the change:
boards: - folder containing board folders
<board>: - name of each board
drivers: - extra drivers specific for platform
include: - header files for the boars
scripts: - extra scripts specific for platform
src: - board specific code
tools: - extra tools specific for platform
<config>: - board specific configuration(s)
Note:
<xxx> names are dependent on platform
This is a logical change to aim to the arch layout but this is a
huge change it should be done in several steps to lower the risk.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* Kconfig: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* Makefile: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* Makefile.*: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* Make.defs: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* .sh: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* .mk: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* .c & .h: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* .bat: replace configs with boards
The change is needed after the path change
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
tools: add flash_writter for cxd56 boards
this flash writter is using the xmodem for firmware transfer
for flashing please use
tools/flash_writer.py -s -c /dev/ttyUSB0 -d -b 115200 -n nuttx.spk
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Mastertools: add spk binary format and entry point for mpy
* tools: add spk binary format
The .spk binary format is used on spresense and other boards
based on the cxd56 arch.
to enable this binary format please set in your config
CONFIG_CXD56_BINARY=y
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* configs: spresense: buils nuttx.spk images
Enable nuttx.spk binary image that can be flashed on spresense board.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
* configs: spresense: add entry point for mpy
The entry point is needed for the downstream projects based
on spresense.
Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
Approved-by: Gregory Nutt <gnutt@nuttx.org>
Fixed coding standard error in several files. Use of while( is incorrect; a space is required between while and (. Also ran tools/nxstyle and fix thoses complaints as well in most files.
Changes to comply with coding standard. Mostly focused on files with missing space after keyword in if(, switch(, and for(. Offending files also got changes to comply with tools nxstyle. If there were logs of nxstyle complaints, the file also got a taste of tools/indent.sh. Still need to fix occurrences of while( with missing space. There are a lot of them.
Squashed commit of the following:
sched/sched/sched_getsockets.c: Fix an error in conditional compilation.
fs/: Remove all conditional logic based on CONFIG_NSOCKET_DESCRIPTORS == 0
Documentation/: Remove all references to CONFIG_NSOCKET_DESCRIPTORS == 0
include/: Remove all conditional logic based on CONFIG_NSOCKET_DESCRIPTORS == 0
libs/: Remove all conditional logic based on CONFIG_NSOCKET_DESCRIPTORS == 0
net/: Remove all conditional logic based on CONFIG_NSOCKET_DESCRIPTORS == 0
sched/: Remove all conditional logic based on CONFIG_NSOCKET_DESCRIPTORS == 0
syscall/: Remove all conditional logic based on CONFIG_NSOCKET_DESCRIPTORS == 0
tools/: Fixups for CONFIG_NSOCKET_DESCRIPTORS no longer used to disable sockets.
Squashed commit of the following:
configs/: The few configurations that formerly set CONFIG_NFILE_DESCRIPTORS=0 should not default, rather they should set the number of descriptors to 3.
fs/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
tools/: Tools updates for changes to usage of CONFIG_NFILE_DESCRIPTORS.
syscall/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
libs/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
include/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
drivers/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
Documentation/: Remove all references to CONFIG_NFILE_DESCRIPTORS == 0
binfmt/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
arch/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
net/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
sched/: Remove all conditional logic based on CONFIG_NFILE_DESCRIPTORS == 0
sched/Kconfig: CONFIG_NFILE_DESCRIPTORS may no longer to set to a value less than 3
configs/: Remove all settings for CONFIG_NFILE_DESCRIPTORS < 3
1
2 //
3 // Multi-line comment
4 // The second line
5
Was generating this output:
1
2
3 * Multi-line comment
4 * The second line
5 */
6
Now correctly generates:
1
2 /* Multi-line comment
3 * The second line
4 */
5
1. Move exepath_*() related code to libc/misc
1. Rename exepath_ to envpath_
2. Rename BINFMT_EXEPATH to LIB_ENVPATH
libs/libc/modlib: Add pre module library symbol table support