ACK/APPLIED: [PATCH][kteam-tools] sort-config: sort a kernel config file as splitconfig does

Kleber Souza kleber.souza at canonical.com
Mon Oct 23 10:41:13 UTC 2017


On 10/19/17 19:35, Kamal Mostafa wrote:
> Signed-off-by: Kamal Mostafa <kamal at canonical.com>

Applied to kteam-tools/master branch.

Acked-by: Kleber Sacilotto de Souza <kleber.souza at canonical.com>

> ---
>  misc/sort-config | 42 ++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 42 insertions(+)
>  create mode 100755 misc/sort-config
> 
> diff --git a/misc/sort-config b/misc/sort-config
> new file mode 100755
> index 0000000..49f6194
> --- /dev/null
> +++ b/misc/sort-config
> @@ -0,0 +1,42 @@
> +#!/bin/bash
> +#
> +# sort-config - sort a kernel config file as splitconfig does
> +# Kamal Mostafa <kamal at canonical.com>
> +#
> +
> +[ "$1" = "-i" ] && { iflag=1; shift; }	### inplace: write to the config file
> +
> +config="$1"				### a kernel .config file
> +
> +[ -f "$config" ] || {
> +    echo "usage: sort-config [-i] configfile" 1>&2
> +    exit 1
> +}
> +
> +set -e
> +
> +header="$(sed -n '/CONFIG/q;p' $config)"
> +
> +TMPOUT=$(mktemp)
> +trap "rm -f $TMPOUT" 0
> +
> +### Method:
> +### 0. Pass the header (comment block) through.
> +### 1. Homogenize the config lines for sorting (strip '=' and leading '#').
> +### 2. Sort by the first column.
> +### 3. Put back the stripped '=' and '#' markers.
> +
> +{
> +echo "$header"
> +cat "$config" \
> +| sed -e '/^CONFIG/s/=/ /' -e 's/^# CONFIG/CONFIG/' -e '/^#/d' \
> +| LC_ALL=C sort -k1,1 \
> +| sed -e '/is not set/s/^/# /' -e '/^CONFIG/s/ /=/'
> +} > "$TMPOUT"
> +
> +if [ "$iflag" = "1" ]
> +then
> +	mv "$TMPOUT" "$config"
> +else
> +	cat "$TMPOUT"
> +fi
> 




More information about the kernel-team mailing list