1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

modify the kconfig system for openwrt

git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3683 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
nbd
2006-04-20 21:00:14 +00:00
parent 5c472fc895
commit 451518eba5
9 changed files with 49 additions and 37 deletions

View File

@@ -88,11 +88,14 @@ struct expr *menu_check_dep(struct expr *e)
e->left.expr = menu_check_dep(e->left.expr);
e->right.expr = menu_check_dep(e->right.expr);
break;
/* tristate always enabled */
#if 0
case E_SYMBOL:
/* change 'm' into 'm' && MODULES */
if (e->left.sym == &symbol_mod)
return expr_alloc_and(e, expr_alloc_symbol(modules_sym));
break;
#endif
default:
break;
}