- May 29, 2018
-
-
Maureen Helm authored
Updates the VERSION file to 1.12.0-rc2 Signed-off-by:
Maureen Helm <maureen.helm@nxp.com>
-
Paul Sokolovsky authored
We aren't interested in doing error handling for close(), close() is itself on error handling path, and its purpose if to free socket resources. Coverity-CID: 186062 Fixes: #7713 Signed-off-by:
Paul Sokolovsky <paul.sokolovsky@linaro.org>
-
Tomasz Bursztyka authored
Security layer was tested only against CC2520, which does not mandate to begin the session with a valid key. However, the crypto API tells it must do so. And indeed, starting a session on mtls shim crypto device will fail due to missing key. Thus moving the relevant code where it should. Reported-by:
Johann Fischer <j.fischer@phytec.de> Signed-off-by:
Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-
qianfan Zhao authored
Some serial tools such as 'minicom' send BS when press backspace, not DEL, so delete char using BS or DEL. Fixes: #7959 Signed-off-by:
qianfan Zhao <qianfanguijin@163.com>
-
Tomasz Bursztyka authored
This is a rare but valid case when you request the controller to send dummy bytes on your behalf (it saves memory as you don't need to provide a valid buffer, just NULL and the numbers of dummy bytes as length). Without it, user code can get stuck into interrupt loop. Signed-off-by:
Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-
Tomasz Bursztyka authored
Splitting to dedicated Kconfig for w25qxxdv and qmsi. Signed-off-by:
Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-
Tomasz Bursztyka authored
It requires to use w25qxxdv spi gpio cs settings. Fixes #7766 Signed-off-by:
Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-
Tomasz Bursztyka authored
Up to SPI API user code to handle providing the right SPI GPIO-CS parameters now. Signed-off-by:
Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
-
Ulf Magnusson authored
This symbol was renamed by commit 14e73e73 ("net: Make DEBUG config option naming consistent"), but an assignment (and a commented-out assignment) to the old name remained. Fix the assignments to use the new name. Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Ulf Magnusson authored
The choice symbol LSM6DSL_EXT0_LIS2MDL was given a 'default' in Kboards/arm/96b_argonkey/Kconfig.defconfig, but 'default' has no effect on choice symbols, triggering a warning from Kconfiglib. Instead of adding a default to the choice symbol, change the default of the 'choice' itself by giving it name and adding the default in Kconfig.defconfig. This requires that we remove the default on the "base" definition of the 'choice', due to some messiness related to the Zephyr-specific prefer-later-defaults behavior (see the 'Zephyr-specific Kconfig behavior for defaults' section in the Board Porting Guide). Choices were overlooked when that patch was added to the C tools, meaning choices still prefer earlier defaults. The crux is that Kconfig.defconfig files are included last. Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Maureen Helm authored
Fills in the boards, drivers, build, and hals subsections with major additions and changes in the 1.12 release. Signed-off-by:
Maureen Helm <maureen.helm@nxp.com>
-
Rajavardhan Gundi authored
CAVS_ICTL_0_IRQ_PRI to CAVS_ICTL_3_IRQ_PRI and DW_ICTL_IRQ_PRI are now defined in Kconfig. This addresses the issue #7811. This was not throwing up any compilation error earlier as the IRQ priorities are all hardwired in Xtensa and hence are unconfigurable. They are dummy for Xtensa arch but may be applicable if used in some other arch. Signed-off-by:
Rajavardhan Gundi <rajavardhan.gundi@intel.com>
-
Punit Vara authored
Update doc with posix mutex feature and test case added. Signed-off-by:
Punit Vara <punit.vara@intel.com>
-
Ulf Magnusson authored
This symbol was removed in commit 748f724d ("serial: dts: remove !HAS_DTS related Kconfig"). The setting should come from DTS now. Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Punit Vara authored
Use I2C_0 instance by default for APDS9960 Signed-off-by:
Punit Vara <punit.vara@intel.com>
-
Erwan Gouriou authored
In some STM32 series, SPI LL headers where included under CONFIG_CLOCK_CONTROL_STM32_CUBE flag definition. Fix this and use CONFIG_SPI_STM32 instead. Signed-off-by:
Erwan Gouriou <erwan.gouriou@linaro.org>
-
Erwan Gouriou authored
"clocks" property is defined in st,stm32-u(s)art.yaml files while aslo defined in uart.yaml. Remove redundant information. Fixes #7974 Signed-off-by:
Erwan Gouriou <erwan.gouriou@linaro.org>
-
Ulf Magnusson authored
These symbols were removed in commit 311e6b9e ("arch: arc: Use DTS for all ARC SoCs"). The settings should come from DTS now. Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
- May 28, 2018
-
-
Ulf Magnusson authored
These are no longer needed since commit 4dc9e5b2 ("kconfig: Get rid of 'option env' bounce symbols"). The C tools are likely to get rid of them soon too. The APPLICATION_BASE symbol (option env="PROJECT_BASE") triggered a compatibility warning, because 'option env' symbols now need to have the same name as the environment variables they reference to be compatible with Kconfiglib. APPLICATION_BASE is unused, so just remove it. Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Jukka Rissanen authored
This one converts "raw" timeout value to use K_MSEC() macro in order to make clear how long the timeout is. Signed-off-by:
Jukka Rissanen <jukka.rissanen@linux.intel.com>
-
Jukka Rissanen authored
Use of K_SECONDS() macro is more intuitive so use that instead of plain MSEC_PER_SEC define. Signed-off-by:
Jukka Rissanen <jukka.rissanen@linux.intel.com>
-
Jukka Rissanen authored
Convert couple of MSEC() calls to K_MSEC() as the timeouts when using MSEC() are just too long. Signed-off-by:
Jukka Rissanen <jukka.rissanen@linux.intel.com>
-
Ulf Magnusson authored
These symbols were removed in commit ed26b957 ("drivers/gpio: Removing dts generated options in QMSI Kconfig"). Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Bobby Noelte authored
Commit 93d3a427 changed the interface of extract_controller() but did not change the recursive call within. Signed-off-by:
Bobby Noelte <b0661n0e17e@gmail.com>
-
Ulf Magnusson authored
- Pressing 'c' ('n' was taken) toggles a mode where the names of all symbols are shown before their prompts. This saves going into the help display when you just want the name. - The name of the symbol/choice now appears in the main text of the help dialog rather than in the title, where it might be hard to spot, as pointed out by Carles Cufi. Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Adithya Baglody authored
This cmake macro was changing the control flow of the cmake files. It is not advisable to modify the callee control flow from inside a cmake macro. Hence removing all instances of this macro from the build system. Fixes: GH-7565 Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Phasing out the usage of this cmake macro from the drivers/entropy folder. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Phasing out the usage of this cmake macro from the drivers/serial folder. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Phasing out the usage of this cmake macro from the drivers/flash folder. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Phasing out the usage of this cmake macro from the sensor folder. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Fixed the incorrect usage of CONFIG_FLASH in the defconfig. This CONFIG_FLASH is used to enable the flash driver only. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Fixed the incorrect usage of CONFIG_FLASH in the defconfig. This CONFIG_FLASH is used to enable the flash driver only. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Fixed the incorrect usage of CONFIG_FLASH in the defconfig. This CONFIG_FLASH is used to enable the flash driver only. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Phasing out the usage of this cmake macro from the arch folder. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Previously the directory core/cortex/mpu/ was getting included on a hidden kconfig. Now this has been replaced with the Kconfig CONFIG_ARM_CORE_MPU. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Adithya Baglody authored
Previously the directory core/mpu/ was getting included on a hidden kconfig. Now this has been replaced with the Kconfig CONFIG_ARC_CORE_MPU. Signed-off-by:
Adithya Baglody <adithya.nagaraj.baglody@intel.com>
-
Johann Fischer authored
This patch prevents eem_read_cb from trying to allocate a lot of memory. It may happen that EEM payload size is zero, the eem_read_cb then tries to allocate a buffer which is 0xfffc bytes large and luckily blocks. Signed-off-by:
Johann Fischer <j.fischer@phytec.de>
-
Ulf Magnusson authored
DNS_RESOLVER_MAX_SERVERS has the range [1,NET_MAX_CONTEXTS], with NET_MAX_CONTEXTS being set to 4, but is set to 5. Out-of-range .config values are ignored, so the symbol reverts to its default value (1). Increase NET_MAX_CONTEXTS to 5. DNS_SERVER{1-5} being set probably implies that DNS_RESOLVER_MAX_SERVERS shouldn't be decreased to 4. This fixes two Kconfig warnings (out-of-range + didn't get assigned value). Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-
Carles Cufi authored
Enable the instruction cache by default in order to achieve a speedup of up to 20% in code execution. Cache can be disabled by setting the new NRF_ENABLE_ICACHE Kconfig option. Signed-off-by:
Carles Cufi <carles.cufi@nordicsemi.no>
-
Ulf Magnusson authored
Gets rid of a warning added in commit 6eabea3a ("Kconfiglib: Warn for unquoted string defaults"), which will soon be an error (because a simple warning whitelist will be used). Signed-off-by:
Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
-