mirror of
https://github.com/apache/nuttx.git
synced 2025-01-13 13:18:50 +08:00
Merged in jjlange/nuttx (pull request #1006)
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 commit835b5e9d6f
. * Revert "Added missing '=' to second grep" This reverts commit38b51f0c6d
. * Added a missing '=' in the second grep statement Approved-by: Gregory Nutt <gnutt@nuttx.org>
This commit is contained in:
parent
4d2f6e85b8
commit
d88cefee85
1 changed files with 1 additions and 1 deletions
|
@ -561,7 +561,7 @@ savedefconfig: do_savedefconfig
|
|||
$(Q) grep "^CONFIG_ARCH_CHIP=" .config >> defconfig.tmp; true
|
||||
$(Q) grep "CONFIG_ARCH_BOARD=" .config && grep "CONFIG_ARCH_BOARD=" .config >> defconfig.tmp; true
|
||||
$(Q) grep "^CONFIG_ARCH_CUSTOM" .config && grep "^CONFIG_ARCH_CUSTOM" .config >> defconfig.tmp; true
|
||||
$(Q) grep "^CONFIG_ARCH_BOARD_CUSTOM=" .config && grep "^CONFIG_ARCH_BOARD_CUSTOM" .config >> defconfig.tmp; true
|
||||
$(Q) grep "^CONFIG_ARCH_BOARD_CUSTOM=" .config && grep "^CONFIG_ARCH_BOARD_CUSTOM=" .config >> defconfig.tmp; true
|
||||
$(Q) export LC_ALL=C; cat defconfig.tmp | sort | uniq > sortedconfig.tmp
|
||||
$(Q) echo "#" > warning.tmp
|
||||
$(Q) echo "# This file is autogenerated: PLEASE DO NOT EDIT IT." >> warning.tmp
|
||||
|
|
Loading…
Reference in a new issue