Update README and NuttX.html
This commit is contained in:
parent
422769e859
commit
533aa4d97d
|
@ -680,7 +680,10 @@
|
||||||
<td><br></td>
|
<td><br></td>
|
||||||
<td>
|
<td>
|
||||||
<p>
|
<p>
|
||||||
<li>Graphics: framebuffer drivers, graphic- and segment-LCD drivers.</li>
|
<li>
|
||||||
|
Graphics: framebuffer drivers, graphic- and segment-LCD drivers.
|
||||||
|
VNC server.
|
||||||
|
</li>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -831,7 +834,8 @@
|
||||||
<td>
|
<td>
|
||||||
<p>
|
<p>
|
||||||
<li>Networking utilities (DHCP server and client, SMTP client, TELNET client, FTP server and client, TFTP client, HTTP server and client, PPPD, NTP client).
|
<li>Networking utilities (DHCP server and client, SMTP client, TELNET client, FTP server and client, TFTP client, HTTP server and client, PPPD, NTP client).
|
||||||
Inheritable TELNET sessions (as "controlling terminal")</li>
|
Inheritable TELNET sessions (as "controlling terminal").
|
||||||
|
VNC server.</li>
|
||||||
</p>
|
</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
19
README.txt
19
README.txt
|
@ -833,14 +833,29 @@ Re-building
|
||||||
a file in one of the linked (i.e., copied) directories, re-build NuttX,
|
a file in one of the linked (i.e., copied) directories, re-build NuttX,
|
||||||
and then not see your changes when you run the program. That is because
|
and then not see your changes when you run the program. That is because
|
||||||
build is still using the version of the file in the copied directory, not
|
build is still using the version of the file in the copied directory, not
|
||||||
your modified file! To work around this annoying behavior, do the
|
your modified file!
|
||||||
following when you re-build:
|
|
||||||
|
Older versions of NuttX did not support dependiencies in this
|
||||||
|
configuration. So a simple work around this annoying behavior in this
|
||||||
|
case was the following when you re-build:
|
||||||
|
|
||||||
make clean_context all
|
make clean_context all
|
||||||
|
|
||||||
This 'make' command will remove of the copied directories, re-copy them,
|
This 'make' command will remove of the copied directories, re-copy them,
|
||||||
then make NuttX.
|
then make NuttX.
|
||||||
|
|
||||||
|
However, more recent versions of NuttX do support dependencies for the
|
||||||
|
Cygwin build. As a result, the above command will cause everything to be
|
||||||
|
rebuilt (beause it removes and will cause recreating the
|
||||||
|
include/nuttx/config.h header file). A much less gracefully but still
|
||||||
|
effective command in this case is the following for the ARM configuration:
|
||||||
|
|
||||||
|
rm -rf arch/arm/src/chip arch/arm/src/board
|
||||||
|
|
||||||
|
This "kludge" simple removes the copied directories. These directories
|
||||||
|
will be re-created when you do a normal 'make' and your edits will then be
|
||||||
|
effective.
|
||||||
|
|
||||||
Build Targets and Options
|
Build Targets and Options
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue