mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
451 B

if pkgcheck uclibc; then
menu_begin MENU_PKG_UCLIBC 'uClibc (the microcontroller C Library) Options'
if [ -z "$ROCKCFG_PKG_UCLIBC_USEIT" ]; then
if pkgcheck uclibc X; then
ROCKCFG_PKG_UCLIBC_USEIT=1
else
ROCKCFG_PKG_UCLIBC_USEIT=0
fi
fi
bool 'Use uClibc instead of fat glibc' \
ROCKCFG_PKG_UCLIBC_USEIT 0
if [ "$ROCKCFG_PKG_UCLIBC_USEIT" == "1" ]; then
pkgenable uclibc
pkgdisable 'glibc2[23]'
fi
menu_end
fi