forked from apache/nuttx
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tools: defconfig supports the include command
We support search directory structure as follows: Current directory stm32/configs/common stm32/common/configs Signed-off-by: yinshengkai <[email protected]>
- Loading branch information
1 parent
7c42238
commit d0ca0d4
Showing
3 changed files
with
143 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
#!/usr/bin/env bash | ||
# tools/process_config.sh | ||
# | ||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. The | ||
# ASF licenses this file to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance with the | ||
# License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
# | ||
|
||
process_file() { | ||
local output_file="$1" | ||
local input_file="$2" | ||
local include_paths=("${!3}") | ||
|
||
while IFS= read -r line || [ -n "$line" ] | ||
do | ||
if [[ $line == \#include* ]]; then | ||
local include_file=$(echo $line | sed -E 's/#include [<"](.+)[">]/\1/') | ||
local found=false | ||
|
||
# Check current directory first | ||
|
||
if [ -f $include_file ]; then | ||
process_file $output_file $include_file include_paths[@] | ||
found=true | ||
else | ||
# Then check in the include paths | ||
|
||
for path in "${include_paths[@]}"; do | ||
local full_path="$path/$include_file" | ||
if [ -f $full_path ]; then | ||
process_file $output_file $full_path include_paths[@] | ||
found=true | ||
break | ||
fi | ||
done | ||
fi | ||
|
||
# Configuration file not found | ||
|
||
if [ "$found" = false ]; then | ||
echo "ERROR: Can't find \"$include_file\" in current directory or search paths." | ||
rm $output_file | ||
exit 1 | ||
fi | ||
else | ||
echo "$line" >> $output_file | ||
fi | ||
done < "$input_file" | ||
} | ||
|
||
usage() { | ||
echo "Usage: $0 [OPTIONS] [INPUT_FILE]" | ||
echo " -h display this help" | ||
echo " -I include path, can be specified multiple times" | ||
echo " -o output file" | ||
echo " [INPUT_FILE] the file to be processed" | ||
} | ||
|
||
while [[ $# -gt 0 ]] | ||
do | ||
key="$1" | ||
|
||
case $key in | ||
-I) | ||
INCLUDE_PATHS+=("$2") | ||
shift | ||
shift | ||
;; | ||
-o) | ||
OUTPUT_FILE="$2" | ||
shift | ||
shift | ||
;; | ||
*) | ||
if [ -z "$INPUT_FILE" ]; then | ||
INPUT_FILE="$1" | ||
shift | ||
else | ||
echo "Error: Multiple input files specified" | ||
usage | ||
exit 1 | ||
fi | ||
;; | ||
esac | ||
done | ||
|
||
if [ -z "$INPUT_FILE" ]; then | ||
echo "Error: Input file not specified" | ||
usage | ||
exit 1 | ||
fi | ||
|
||
if [ -z "$OUTPUT_FILE" ]; then | ||
echo "Error: Output file not specified" | ||
usage | ||
exit 1 | ||
fi | ||
|
||
echo "" > $OUTPUT_FILE | ||
process_file "$OUTPUT_FILE" "$INPUT_FILE" INCLUDE_PATHS[@] |