From: Ilya Dryomov Date: Sun, 21 Jun 2015 10:42:50 +0000 (+0300) Subject: build-kernel-deb: no need to patch config manually X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=2c99657e9244045fe24c69a5b0fcfb5c06f1c803;p=autobuild-ceph.git build-kernel-deb: no need to patch config manually These were necessary when our base config was circa 3.8. Now, with base config from 3.19, both CEPH_FSCACHE and CEPH_FS_POSIX_ACL are on by default. Signed-off-by: Ilya Dryomov --- diff --git a/build-kernel-deb.sh b/build-kernel-deb.sh index 679b80e..75c9834 100755 --- a/build-kernel-deb.sh +++ b/build-kernel-deb.sh @@ -46,12 +46,6 @@ ionice -c3 nice -n20 make O=build~/out listnewconfig "$@" || : echo "$0: running make oldconfig..." yes '' | ionice -c3 nice -n20 make O=build~/out oldconfig "$@" -echo "$0: seeing if CONFIG_CEPH_FSCACHE can be enabled..." -sed -i 's/# CONFIG_CEPH_FSCACHE is not set/CONFIG_CEPH_FSCACHE=y/' build~/out/.config - -echo "$0: seeing if CONFIG_CEPH_FS_POSIX_ACL can be enabled..." -sed -i 's/# CONFIG_CEPH_FS_POSIX_ACL is not set/CONFIG_CEPH_FS_POSIX_ACL=y/' build~/out/.config - #echo "$0: applying perf.patch..." #patch -p1 < ../../perf.patch