aboutsummaryrefslogtreecommitdiff
path: root/nuttx/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 01:44:45 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2013-01-28 01:44:45 +0000
commit02b171cb25870b7caf1161469edd43486bf4145b (patch)
tree0a2af20f1389d893e669a6956de61d055ff705b2 /nuttx/README.txt
parentd3e4a31ac5b12f763cf1e04448437ae646d6c121 (diff)
downloadpx4-firmware-02b171cb25870b7caf1161469edd43486bf4145b.tar.gz
px4-firmware-02b171cb25870b7caf1161469edd43486bf4145b.tar.bz2
px4-firmware-02b171cb25870b7caf1161469edd43486bf4145b.zip
Updates for stm32f4discovery/usbnsh configuration
git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5574 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/README.txt')
-rw-r--r--nuttx/README.txt26
1 files changed, 24 insertions, 2 deletions
diff --git a/nuttx/README.txt b/nuttx/README.txt
index 2ff473fa0..c597091dc 100644
--- a/nuttx/README.txt
+++ b/nuttx/README.txt
@@ -280,8 +280,14 @@ NuttX Configuration Tool
make menuconfig
- This make target will bring up NuttX configuration menus. The
- 'menuconfig' target depends on two things:
+ This make target will bring up NuttX configuration menus.
+
+ WARNING: Never do 'make menuconfig' on a configuration that has
+ not been converted to use the kconfig-frontends tools! This will
+ damage your configuration (see
+ http://www.nuttx.org/doku.php?id=wiki:howtos:convertconfig).
+
+ The 'menuconfig' make target depends on two things:
1. The Kconfig configuration data files that appear in almost all
NuttX directories. These data files are the part that is still
@@ -319,6 +325,22 @@ NuttX Configuration Tool
This is pretty straight forward for creating new configurations
but may be less intuitive for modifying existing configurations.
+Refreshing Configurations with 'make oldconfig'
+-----------------------------------------------
+
+ Whenever you use a configuration, you really should always do
+ the following *before* you make NuttX:
+
+ make oldconfig
+
+ This will make sure that the configuration is up-to-date in
+ the event that it has lapsed behind the current NuttX development.
+
+ WARNING: Never do 'make oldconfig' (OR 'make menuconfig') on a
+ configuration that has not been converted to use the kconfig-frontends
+ tools! This will damage your configuration (see
+ http://www.nuttx.org/doku.php?id=wiki:howtos:convertconfig).
+
Incompatibilities with Older Configurations
-------------------------------------------