diff --git a/iop/scripts/genconfig.sh b/iop/scripts/genconfig.sh index d6de33aff..ce4c18a96 100755 --- a/iop/scripts/genconfig.sh +++ b/iop/scripts/genconfig.sh @@ -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