From: Dave Chinner Date: Sun, 7 Feb 2016 22:27:05 +0000 (+1100) Subject: setup: add section support X-Git-Tag: v2022.05.01~2676 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=1e7a824ef941f969b381b594d3916bc1d111243d;p=users%2Fhch%2Fxfstests-dev.git setup: add section support Make the setup command section aware so that it is easy to test whether the section config code is generating the correct configurations or not. Signed-off-by: Dave Chinner Reviewed-by: Eryu Guan Signed-off-by: Dave Chinner --- diff --git a/check b/check index 135a9fbd2..fa9697f45 100755 --- a/check +++ b/check @@ -421,6 +421,7 @@ for section in $HOST_OPTIONS_SECTIONS; do for s in $RUN_SECTION; do if [ $section == $s ]; then skip=false + break; fi done if $skip; then diff --git a/setup b/setup index eb7bdb336..8675b5304 100755 --- a/setup +++ b/setup @@ -15,22 +15,64 @@ # along with this program; if not, write the Free Software Foundation, # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA # +usage() +{ + + echo "Usage: $0 [options]"' + + -s section run only specified section(s) from config file +' + exit 0 +} + +while [ $# -gt 0 ]; do + case "$1" in + -\? | -h | --help) usage ;; + -s) RUN_SECTION="$RUN_SECTION $2"; shift ;; + *) usage ;; + esac + shift +done + if ! . ./common/config then echo "check: failed to source common/config" exit 1 fi -[ "$USE_EXTERNAL" = yes ] || USE_EXTERNAL=no -[ "$USE_LBD_PATCH" = yes ] || USE_LBD_PATCH=no -[ "$LARGE_SCRATCH_DEV" = yes ] || LARGE_SCRATCH_DEV=no -[ "$USE_ATTR_SECURE" = yes ] || USE_ATTR_SECURE=no -[ -z "$FSTYP" ] && FSTYP="xfs" +for section in $HOST_OPTIONS_SECTIONS; do + OLD_FSTYP=$FSTYP + OLD_MOUNT_OPTIONS=$MOUNT_OPTIONS + get_next_config $section + + # Do we need to run only some sections ? + if [ ! -z "$RUN_SECTION" ]; then + skip=true + for s in $RUN_SECTION; do + if [ $section == $s ]; then + skip=false + break; + fi + done + if $skip; then + continue + fi + fi + + [ "$USE_EXTERNAL" = yes ] || USE_EXTERNAL=no + [ "$USE_LBD_PATCH" = yes ] || USE_LBD_PATCH=no + [ "$LARGE_SCRATCH_DEV" = yes ] || LARGE_SCRATCH_DEV=no + [ "$USE_ATTR_SECURE" = yes ] || USE_ATTR_SECURE=no + [ -z "$FSTYP" ] && FSTYP="xfs" + + cat <