diff options
-rw-r--r-- | mk/build.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/build.mk b/mk/build.mk index 7ac861c7c..5c5d2a84c 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -401,7 +401,7 @@ defconfig: .menu $(CONFIG)/conf >> $(ADK_TOPDIR)/.defconfig; \ fi @if [ ! -z "$(ADK_TARGET_FS)" ];then \ - grep "^config" target/config/Config.in.target \ + grep "^config" target/config/Config.in.rootfs \ |grep -i "$(ADK_TARGET_FS)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/.defconfig; \ @@ -466,7 +466,7 @@ allconfig: echo $$symbol >> $(ADK_TOPDIR)/all.config; \ done @if [ ! -z "$(ADK_TARGET_FS)" ];then \ - grep "^config" target/config/Config.in.target \ + grep "^config" target/config/Config.in.rootfs \ |grep -i "$(ADK_TARGET_FS)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(ADK_TOPDIR)/all.config; \ |