diff options
| author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-17 19:36:01 +0000 |
|---|---|---|
| committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-01-17 19:36:01 +0000 |
| commit | 9e8df9354a30a9206d4cefd0d88bae5b776a0cb7 (patch) | |
| tree | 40d09d4d8cdd9cc73296e360530182a0d982b33a /scripts | |
| parent | b64eed6030d955ac6e4c3c653a923cf6535799c1 (diff) | |
| download | busybox-w32-9e8df9354a30a9206d4cefd0d88bae5b776a0cb7.tar.gz busybox-w32-9e8df9354a30a9206d4cefd0d88bae5b776a0cb7.tar.bz2 busybox-w32-9e8df9354a30a9206d4cefd0d88bae5b776a0cb7.zip | |
- replace some occurances of "kernel" with busybox
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/kconfig/conf.c | 4 | ||||
| -rw-r--r-- | scripts/kconfig/confdata.c | 6 | ||||
| -rw-r--r-- | scripts/kconfig/mconf.c | 16 | ||||
| -rw-r--r-- | scripts/kconfig/qconf.cc | 2 |
4 files changed, 14 insertions, 14 deletions
diff --git a/scripts/kconfig/conf.c b/scripts/kconfig/conf.c index ca722b05d..02693b791 100644 --- a/scripts/kconfig/conf.c +++ b/scripts/kconfig/conf.c | |||
| @@ -556,10 +556,10 @@ int main(int ac, char **av) | |||
| 556 | case ask_silent: | 556 | case ask_silent: |
| 557 | if (stat(".config", &tmpstat)) { | 557 | if (stat(".config", &tmpstat)) { |
| 558 | printf(_("***\n" | 558 | printf(_("***\n" |
| 559 | "*** You have not yet configured your kernel!\n" | 559 | "*** You have not yet configured busybox!\n" |
| 560 | "***\n" | 560 | "***\n" |
| 561 | "*** Please run some configurator (e.g. \"make oldconfig\" or\n" | 561 | "*** Please run some configurator (e.g. \"make oldconfig\" or\n" |
| 562 | "*** \"make menuconfig\" or \"make xconfig\").\n" | 562 | "*** \"make menuconfig\" or \"make defconfig\").\n" |
| 563 | "***\n")); | 563 | "***\n")); |
| 564 | exit(1); | 564 | exit(1); |
| 565 | } | 565 | } |
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c index 293044654..f3f76dd99 100644 --- a/scripts/kconfig/confdata.c +++ b/scripts/kconfig/confdata.c | |||
| @@ -27,7 +27,7 @@ const char conf_defname[] = "scripts/defconfig"; | |||
| 27 | const char *conf_confnames[] = { | 27 | const char *conf_confnames[] = { |
| 28 | ".config", | 28 | ".config", |
| 29 | "/lib/modules/$UNAME_RELEASE/.config", | 29 | "/lib/modules/$UNAME_RELEASE/.config", |
| 30 | "/etc/kernel-config", | 30 | "/etc/busybox-config", |
| 31 | "/boot/config-$UNAME_RELEASE", | 31 | "/boot/config-$UNAME_RELEASE", |
| 32 | conf_defname, | 32 | conf_defname, |
| 33 | NULL, | 33 | NULL, |
| @@ -385,7 +385,7 @@ int conf_write(const char *name) | |||
| 385 | 385 | ||
| 386 | fprintf(out, _("#\n" | 386 | fprintf(out, _("#\n" |
| 387 | "# Automatically generated make config: don't edit\n" | 387 | "# Automatically generated make config: don't edit\n" |
| 388 | "# Linux kernel version: %s\n" | 388 | "# Busybox version: %s\n" |
| 389 | "%s%s" | 389 | "%s%s" |
| 390 | "#\n"), | 390 | "#\n"), |
| 391 | sym_get_string_value(sym), | 391 | sym_get_string_value(sym), |
| @@ -409,7 +409,7 @@ int conf_write(const char *name) | |||
| 409 | } | 409 | } |
| 410 | fprintf(out_h, "/*\n" | 410 | fprintf(out_h, "/*\n" |
| 411 | " * Automatically generated C config: don't edit\n" | 411 | " * Automatically generated C config: don't edit\n" |
| 412 | " * Linux kernel version: %s\n" | 412 | " * Busybox version: %s\n" |
| 413 | " */\n" | 413 | " */\n" |
| 414 | "%s" | 414 | "%s" |
| 415 | "\n", | 415 | "\n", |
diff --git a/scripts/kconfig/mconf.c b/scripts/kconfig/mconf.c index 24fef151c..810b018f1 100644 --- a/scripts/kconfig/mconf.c +++ b/scripts/kconfig/mconf.c | |||
| @@ -29,10 +29,10 @@ static char menu_backtitle[128]; | |||
| 29 | static const char mconf_readme[] = N_( | 29 | static const char mconf_readme[] = N_( |
| 30 | "Overview\n" | 30 | "Overview\n" |
| 31 | "--------\n" | 31 | "--------\n" |
| 32 | "Some kernel features may be built directly into the kernel.\n" | 32 | "Some features may be built directly into busybox.\n" |
| 33 | "Some may be made into loadable runtime modules. Some features\n" | 33 | "Some may be made into standalone applets. Some features\n" |
| 34 | "may be completely removed altogether. There are also certain\n" | 34 | "may be completely removed altogether. There are also certain\n" |
| 35 | "kernel parameters which are not really features, but must be\n" | 35 | "parameters which are not really features, but must be\n" |
| 36 | "entered in as decimal or hexadecimal numbers or possibly text.\n" | 36 | "entered in as decimal or hexadecimal numbers or possibly text.\n" |
| 37 | "\n" | 37 | "\n" |
| 38 | "Menu items beginning with [*], <M> or [ ] represent features\n" | 38 | "Menu items beginning with [*], <M> or [ ] represent features\n" |
| @@ -148,7 +148,7 @@ static const char mconf_readme[] = N_( | |||
| 148 | "\n" | 148 | "\n" |
| 149 | "Optional personality available\n" | 149 | "Optional personality available\n" |
| 150 | "------------------------------\n" | 150 | "------------------------------\n" |
| 151 | "If you prefer to have all of the kernel options listed in a single\n" | 151 | "If you prefer to have all of the busybox options listed in a single\n" |
| 152 | "menu, rather than the default multimenu hierarchy, run the menuconfig\n" | 152 | "menu, rather than the default multimenu hierarchy, run the menuconfig\n" |
| 153 | "with MENUCONFIG_MODE environment variable set to single_menu. Example:\n" | 153 | "with MENUCONFIG_MODE environment variable set to single_menu. Example:\n" |
| 154 | "\n" | 154 | "\n" |
| @@ -193,11 +193,11 @@ load_config_text[] = N_( | |||
| 193 | "last retrieved. Leave blank to abort."), | 193 | "last retrieved. Leave blank to abort."), |
| 194 | load_config_help[] = N_( | 194 | load_config_help[] = N_( |
| 195 | "\n" | 195 | "\n" |
| 196 | "For various reasons, one may wish to keep several different kernel\n" | 196 | "For various reasons, one may wish to keep several different busybox\n" |
| 197 | "configurations available on a single machine.\n" | 197 | "configurations available on a single machine.\n" |
| 198 | "\n" | 198 | "\n" |
| 199 | "If you have saved a previous configuration in a file other than the\n" | 199 | "If you have saved a previous configuration in a file other than \n" |
| 200 | "kernel's default, entering the name of the file here will allow you\n" | 200 | "busybox's default, entering the name of the file here will allow you\n" |
| 201 | "to modify that configuration.\n" | 201 | "to modify that configuration.\n" |
| 202 | "\n" | 202 | "\n" |
| 203 | "If you are uncertain, then you have probably never used alternate\n" | 203 | "If you are uncertain, then you have probably never used alternate\n" |
| @@ -207,7 +207,7 @@ save_config_text[] = N_( | |||
| 207 | "as an alternate. Leave blank to abort."), | 207 | "as an alternate. Leave blank to abort."), |
| 208 | save_config_help[] = N_( | 208 | save_config_help[] = N_( |
| 209 | "\n" | 209 | "\n" |
| 210 | "For various reasons, one may wish to keep different kernel\n" | 210 | "For various reasons, one may wish to keep different busybox\n" |
| 211 | "configurations available on a single machine.\n" | 211 | "configurations available on a single machine.\n" |
| 212 | "\n" | 212 | "\n" |
| 213 | "Entering a file name here will allow you to later retrieve, modify\n" | 213 | "Entering a file name here will allow you to later retrieve, modify\n" |
diff --git a/scripts/kconfig/qconf.cc b/scripts/kconfig/qconf.cc index 74b8470e8..605b02593 100644 --- a/scripts/kconfig/qconf.cc +++ b/scripts/kconfig/qconf.cc | |||
| @@ -1317,7 +1317,7 @@ void ConfigMainWindow::showIntro(void) | |||
| 1317 | void ConfigMainWindow::showAbout(void) | 1317 | void ConfigMainWindow::showAbout(void) |
| 1318 | { | 1318 | { |
| 1319 | static char str[] = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n\n" | 1319 | static char str[] = "qconf is Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org>.\n\n" |
| 1320 | "Bug reports and feature request can also be entered at http://bugzilla.kernel.org/\n"; | 1320 | "Bug reports and feature request can also be entered at http://bugs.busybox.net/\n"; |
| 1321 | 1321 | ||
| 1322 | QMessageBox::information(this, "qconf", str); | 1322 | QMessageBox::information(this, "qconf", str); |
| 1323 | } | 1323 | } |
