From 1f83f3a2352f83f2718e6b0a97e1f0737721135a Mon Sep 17 00:00:00 2001 From: Josh Boyer Date: Fri, 25 May 2012 16:14:15 -0400 Subject: Drop CONFIG_USER_NS Upstream e1c972b681bf118fcedb9fe2ed7a73de983aa5ef makes it depend on UIDGID_CONVERTED which is only set when all of the subsystems have been converted to be user namespace safe. That defaults to Y whenever it happens, so we'll set this after that point. --- scripts/sort-config | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'scripts') diff --git a/scripts/sort-config b/scripts/sort-config index 2b9da1ef3..399709f18 100755 --- a/scripts/sort-config +++ b/scripts/sort-config @@ -4,9 +4,9 @@ FC=($(fedpkg verrel | awk -F. '{print $NF}')) SRC=($(ls config-* 2>/dev/null)) -TGT=($(ls kernel-*.$FC/linux-*.noarch/configs/kernel-*-*.config \ - kernel-*.$FC/linux-*.noarch/configs/kernel-*-*-debug.config 2>/dev/null)) -TGT1=(${TGT[*]#kernel-*.$FC/linux-*.noarch/configs/kernel-*-}) +TGT=($(ls kernel-*.$FC/linux-*.$2/configs/kernel-*-*.config \ + kernel-*.$FC/linux-*.$2/configs/kernel-*-*-debug.config 2>/dev/null)) +TGT1=(${TGT[*]#kernel-*.$FC/linux-*.$2/configs/kernel-*-}) ALL_OPTS="cdfimn" @@ -66,11 +66,11 @@ rm -f $TEMPFILES SRCFILE=config-$1 [ ! -f $SRCFILE ] && echo "Input file" $SRCFILE "missing" && exit 2 -TGTFILE=kernel-*.$FC/linux-*.noarch/configs/kernel-*-$2.config +TGTFILE=kernel-*.$FC/linux-*.$2/configs/kernel-*-$2.config [ ! -f $TGTFILE ] && echo "No target file matching" $TGTFILE "exists" && exit 2 [ "$FIND_IMPOSS" ] && \ - find kernel-*.$FC/*.noarch -name Kconfig\* -type f \ + find kernel-*.$FC/*.$2 -name Kconfig\* -type f \ | xargs egrep -s -h '^[[:space:]]*(menu)?config[[:space:]]+' \ | sed -r 's/^[[:space:]]*(menu)?config[[:space:]]+/CONFIG_/' \ | sort | uniq >xx98 -- cgit