From 6196fc1a8d2b45926cd12137e083b20c3de78137 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Thu, 17 Jan 2019 20:17:56 +0100 Subject: [PATCH] linux-4.14.94: Keep config from bee file Keep the config embedded in the bee file in the build directory as `config-from-bee-file`. This can be helpfull when tracking changes. --- linux-4.14.94-239.bee | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/linux-4.14.94-239.bee b/linux-4.14.94-239.bee index fa1b1cf5e..e7a3ba782 100755 --- a/linux-4.14.94-239.bee +++ b/linux-4.14.94-239.bee @@ -82,7 +82,7 @@ mee_patch() { mee_configure() { echo "configure $@" # result from 'make savedefconfig' - cat >.config <<-EOF + cat >config-from-bee-file <<-EOF CONFIG_LOCALVERSION="$KERNELLOCAL" CONFIG_KERNEL_BZIP2=y CONFIG_SYSVIPC=y @@ -899,6 +899,7 @@ mee_configure() { CONFIG_FONT_SUN8x16=y CONFIG_FONT_SUN12x22=y EOF + cp config-from-bee-file .config make olddefconfig }