From 76e1cb3ada7fb12f38e248a08c2deedc5c9ce888 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Wed, 16 Apr 2014 07:49:32 -0500 Subject: Probe for the existence of FIFREEZE and make fsfreeze depend on it. --- scripts/genconfig.sh | 25 +++++++++++++++++++------ 1 file changed, 19 insertions(+), 6 deletions(-) (limited to 'scripts') diff --git a/scripts/genconfig.sh b/scripts/genconfig.sh index 8ab26dcc..41f1a173 100755 --- a/scripts/genconfig.sh +++ b/scripts/genconfig.sh @@ -7,20 +7,33 @@ mkdir -p generated source configure +# Probe for a single config symbol with a "compiles or not" test. +# Symbol name is first argument, flags second, feed C file to stdin +probesymbol() +{ + ${CROSS_COMPILE}${CC} $CFLAGS -xc -o /dev/null $2 - 2>/dev/null + [ $? -eq 0 ] && DEFAULT=y || DEFAULT=n + rm a.out 2>/dev/null + echo -e "config $1\n\tbool" || exit 1 + echo -e "\tdefault $DEFAULT\n" || exit 1 +} + probeconfig() { # Probe for container support on target - - echo -e "# container support\nconfig TOYBOX_CONTAINER\n\tbool" || return 1 - ${CROSS_COMPILE}${CC} $CFLAGS -xc -o /dev/null - 2>/dev/null << EOF + probesymbol TOYBOX_CONTAINER << EOF #include int x=CLONE_NEWNS|CLONE_NEWUTS|CLONE_NEWIPC|CLONE_NEWNET; int main(int argc, char *argv[]) { return unshare(x); } EOF - [ $? -eq 0 ] && DEFAULT=y || DEFAULT=n - rm a.out 2>/dev/null - echo -e "\tdefault $DEFAULT\n" || return 1 + + probesymbol TOYBOX_FIFREEZE -c << EOF + #include + #ifndef FIFREEZE + #error nope + #endif +EOF } genconfig() -- cgit v1.2.3