Skip to content

Commit 3f52ad7

Browse files
kpeng3ho28
authored andcommitted
docs/wind: document S32G missing symbol table fix
In the NXP-S32G guide, the VxWorks image created by it attempts to use a network symbol table. If the symbol table is not found, it leads to an error on startup and the C interpreter does not work because there are no symbols. This commit adds a troubleshooting section which fixes it by adding INCLUDE_STANDALONE_SYM_TBL, which automatically removes INCLUDE_NET_SYM_TBL.
1 parent b26475d commit 3f52ad7

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

docs/wind/vxworks_nxp-s32g.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,21 @@ To boot and run VxWorks with FlexCAN controller connected to the virtual CAN int
131131
-object can-bus,id=canbus0-bus \
132132
-machine canbus0=canbus0-bus \
133133
-object can-host-socketcan,id=socketcan0,if=vcan0,canbus=canbus0-bus
134+
135+
Troubleshooting
136+
===============
137+
138+
Network Symbol Table Error
139+
---------------------------
140+
141+
If you happen to see a network symbol table error:
142+
143+
.. code::
144+
145+
Error opening /host.host/vxWorks.sym: status = 0x290010
146+
147+
Add the standalone symbol table component to your project, which removes the dependency on the network symbol table:
148+
149+
.. code::
150+
151+
$ vxprj component add INCLUDE_STANDALONE_SYM_TBL

0 commit comments

Comments
 (0)