view scripts/cfg2files.sh @ 214:98820d1eaa79

Upgrade patch to understand creating and deleting files.
author Rob Landley <rob@landley.net>
date Thu, 20 Dec 2007 06:30:19 -0600
parents a459c6b39645
children
line wrap: on
line source

#!/bin/bash

# cat .config into this to get a list of .c files.

# Grab the XXX part of all CONFIG_XXX entries, removing everything after the
# second underline.  Sort the list, keep only one of each entry, convert
# to lower case, remove toybox itself from the list (as that indicates
# global symbols).

sed -nre 's/^CONFIG_(.*)=y/\1/;t skip;b;:skip;s/_.*//;p' \
	| sort -u | tr A-Z a-z | grep -v '^toybox$'