summaryrefslogtreecommitdiff
path: root/nuttx/tools/mkconfig.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/tools/mkconfig.c')
-rw-r--r--nuttx/tools/mkconfig.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/nuttx/tools/mkconfig.c b/nuttx/tools/mkconfig.c
index b3749266c..2d2fff5c5 100644
--- a/nuttx/tools/mkconfig.c
+++ b/nuttx/tools/mkconfig.c
@@ -44,7 +44,7 @@
#include "cfgparser.h"
/****************************************************************************
- * Definitions
+ * Pre-processor Definitions
****************************************************************************/
#define DEFCONFIG ".config"
@@ -265,6 +265,12 @@ int main(int argc, char **argv, char **envp)
printf("# undef CONFIG_DEBUG_SPI\n");
printf("# undef CONFIG_DEBUG_STACK\n");
printf("#endif\n\n");
+ printf("/* User entry point. This is provided as a fall-back to keep compatibility\n");
+ printf(" * with existing code, for builds which do not define CONFIG_USER_ENTRYPOINT.\n");
+ printf(" */\n\n");
+ printf("#ifndef CONFIG_USER_ENTRYPOINT\n");
+ printf("# define CONFIG_USER_ENTRYPOINT user_start\n");
+ printf("#endif\n\n");
printf("#endif /* __INCLUDE_NUTTX_CONFIG_H */\n");
fclose(stream);
return 0;