summaryrefslogtreecommitdiff
path: root/nuttx/arch/z16/src/z16f/z16f_head.S
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-28 14:59:21 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-01-28 14:59:21 +0000
commita95f177d20c45f908b62d35c0d58a4448713e628 (patch)
treed128cb857928af871f2de84a3e3ed0a425ff93d4 /nuttx/arch/z16/src/z16f/z16f_head.S
parentd6168a07ffc8e5db221861756291d4f58fc43fe0 (diff)
downloadpx4-nuttx-a95f177d20c45f908b62d35c0d58a4448713e628.tar.gz
px4-nuttx-a95f177d20c45f908b62d35c0d58a4448713e628.tar.bz2
px4-nuttx-a95f177d20c45f908b62d35c0d58a4448713e628.zip
Z16F compile/link with all OS features enabled
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@574 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/arch/z16/src/z16f/z16f_head.S')
-rwxr-xr-xnuttx/arch/z16/src/z16f/z16f_head.S11
1 files changed, 11 insertions, 0 deletions
diff --git a/nuttx/arch/z16/src/z16f/z16f_head.S b/nuttx/arch/z16/src/z16f/z16f_head.S
index fc480822a..7e0682e76 100755
--- a/nuttx/arch/z16/src/z16f/z16f_head.S
+++ b/nuttx/arch/z16/src/z16f/z16f_head.S
@@ -50,9 +50,15 @@
#ifdef CONFIG_ARCH_LEDS
xref _up_ledinit:EROM
#endif
+#if defined(CONFIG_DEV_CONSOLE) && CONFIG_NFILE_DESCRIPTORS > 0
+ xref _up_earlyserialinit:EROM
+#endif
#if defined(CONFIG_ARCH_LOWPUTC) || defined(CONFIG_ARCH_LOWGETC)
xref _z16f_lowuartinit:EROM
#endif
+#if defined(CONFIG_DEV_CONSOLE) && CONFIG_NFILE_DESCRIPTORS > 0
+ xref up_earlyserialinit:EROM
+#endif
xref _os_start:EROM
xref _up_doirq:EROM
xref _z16f_sysexec:EROM
@@ -207,6 +213,11 @@ _z16f_reset8:
call _z16f_lowinit /* Perform low-level hardware initialization */
+#if defined(CONFIG_DEV_CONSOLE) && CONFIG_NFILE_DESCRIPTORS > 0
+ /* Perform early serial initialization */
+
+ call _up_earlyserialinit
+#endif
/* Start NuttX */
call _os_start /* Start the operating system */