From 6cd99e066182afaee9ce9534dbab299ec382ecaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20H=C3=B6glund?= Date: Fri, 24 Mar 2017 15:59:25 +0100 Subject: [PATCH] Add support for target config diff --- iop/scripts/genconfig.sh | 6 ++++++ 1 file changed, 6 insertions(+) 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