|
Last change
on this file since 1562 was 821, checked in by Bruno Cornec, 19 years ago |
|
Addition of busybox 1.2.1 as a mindi-busybox new package
This should avoid delivering binary files in mindi not built there (Fedora and Debian are quite serious about that)
|
|
File size:
405 bytes
|
| Line | |
|---|
| 1 | /* vi: set sw=4 ts=4: */
|
|---|
| 2 | /*
|
|---|
| 3 | * Version stuff.
|
|---|
| 4 | *
|
|---|
| 5 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
|---|
| 6 | */
|
|---|
| 7 |
|
|---|
| 8 | #include "busybox.h"
|
|---|
| 9 |
|
|---|
| 10 | #ifndef BB_EXTRA_VERSION
|
|---|
| 11 | #define BANNER "BusyBox v" BB_VER " (" BB_BT ")"
|
|---|
| 12 | #else
|
|---|
| 13 | #define BANNER "BusyBox v" BB_VER " (" BB_EXTRA_VERSION ")"
|
|---|
| 14 | #endif
|
|---|
| 15 |
|
|---|
| 16 | const char BB_BANNER[]=BANNER;
|
|---|
| 17 | const char * const bb_msg_full_version = BANNER " multi-call binary";
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.