comparison sources/sections/uClibc.build @ 1152:2f39d1bfb2fd

Add baseconfig-linux, the infrastructure to use it, and move over the arm targets. (You can override with a miniconfig-linux or miniconfig-uClibc in the appropriate target directory.)
author Rob Landley <rob@landley.net>
date Fri, 02 Jul 2010 23:38:31 -0500
parents fb05d8a5fd77
children 4021fb1183d7
comparison
equal deleted inserted replaced
1151:b55c80be32b6 1152:2f39d1bfb2fd
7 PREFIX="$STAGE_DIR/" RUNTIME_PREFIX=/ DEVEL_PREFIX=/ $1 7 PREFIX="$STAGE_DIR/" RUNTIME_PREFIX=/ DEVEL_PREFIX=/ $1
8 } 8 }
9 9
10 # Configure 10 # Configure
11 11
12 if is_in_list uClibc $USE_UNSTABLE && 12 getconfig uClibc > "$WORK/mini.conf" || dienow
13 [ -e "$CONFIG_DIR/$ARCH/miniconfig-alt-uClibc" ]
14 then
15 cp "$CONFIG_DIR/$ARCH/miniconfig-alt-uClibc" "$WORK/mini.conf" || dienow
16 echo using miniconfig-alt-uClibc
17 else
18 cp "$SOURCES/baseconfig-uClibc" "$WORK/mini.conf" &&
19 echo "$UCLIBC_CONFIG" >> "$WORK/mini.conf" || dienow
20 echo Creating miniconfig for uClibc
21 fi
22 13
23 # Build and install 14 # Build and install
24 15
25 make KCONFIG_ALLCONFIG="$WORK/mini.conf" allnoconfig && 16 make KCONFIG_ALLCONFIG="$WORK/mini.conf" allnoconfig &&
26 mkdir -p "$STAGE_DIR/src" && 17 mkdir -p "$STAGE_DIR/src" &&