2006-07-03 01:17:05 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
2008-12-07 06:22:58 +05:30
|
|
|
/*
|
|
|
|
* Copyright (C) 2008 Denys Vlasenko.
|
|
|
|
*
|
|
|
|
* Licensed under GPLv2, see file LICENSE in this tarball for details.
|
|
|
|
*/
|
2006-04-28 05:04:46 +05:30
|
|
|
#include <unistd.h>
|
2006-10-05 15:47:08 +05:30
|
|
|
|
2007-08-13 02:29:07 +05:30
|
|
|
/* Just #include "autoconf.h" doesn't work for builds in separate
|
|
|
|
* object directory */
|
2009-10-02 04:40:32 +05:30
|
|
|
#include "autoconf.h"
|
2006-04-28 05:04:46 +05:30
|
|
|
|
2008-06-14 02:14:05 +05:30
|
|
|
/* Since we can't use platform.h, have to do this again by hand: */
|
|
|
|
#if ENABLE_NOMMU
|
2009-10-02 04:40:32 +05:30
|
|
|
# define BB_MMU 0
|
|
|
|
# define USE_FOR_NOMMU(...) __VA_ARGS__
|
|
|
|
# define USE_FOR_MMU(...)
|
2008-06-14 02:14:05 +05:30
|
|
|
#else
|
2009-10-02 04:40:32 +05:30
|
|
|
# define BB_MMU 1
|
|
|
|
# define USE_FOR_NOMMU(...)
|
|
|
|
# define USE_FOR_MMU(...) __VA_ARGS__
|
2008-06-14 02:14:05 +05:30
|
|
|
#endif
|
|
|
|
|
2007-01-04 04:53:58 +05:30
|
|
|
static const char usage_messages[] = ""
|
2006-04-28 05:04:46 +05:30
|
|
|
#define MAKE_USAGE
|
2006-10-20 03:40:07 +05:30
|
|
|
#include "usage.h"
|
|
|
|
#include "applets.h"
|
2006-04-28 05:04:46 +05:30
|
|
|
;
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2008-05-19 15:18:17 +05:30
|
|
|
write(STDOUT_FILENO, usage_messages, sizeof(usage_messages));
|
2006-04-28 05:04:46 +05:30
|
|
|
return 0;
|
|
|
|
}
|