mirror of
https://dev.iopsys.eu/feed/iopsys.git
synced 2026-03-06 09:21:36 +01:00
Add support for target config diff
This commit is contained in:
parent
942ddd8c1c
commit
6cd99e0661
1 changed files with 6 additions and 0 deletions
|
|
@ -214,6 +214,12 @@ function genconfig {
|
|||
cp $CONFIGPATH/config .config
|
||||
fi
|
||||
|
||||
# Add target diff
|
||||
local target_conf=target/linux/${target/_/-}/config
|
||||
if [ -f $target_conf ]; then
|
||||
cat $target_conf >> .config
|
||||
fi
|
||||
|
||||
# Apply profile diff to master config if selected
|
||||
if [ -n "$PROFILE" ]; then
|
||||
if [ -e "$CONFIGPATH/$PROFILE.diff" ]; then
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue