summaryrefslogtreecommitdiff
path: root/nuttx/TODO
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-06-10 21:03:38 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-06-10 21:03:38 +0000
commit1376ded6e0aebc3d6d1062518ed99592e9cc1e63 (patch)
treeebffe4b73276f07d33faa7296227efd55947f4c5 /nuttx/TODO
parentab6d662a0d84dfb96eb966470cd91fc2bacc5a2b (diff)
downloadpx4-nuttx-1376ded6e0aebc3d6d1062518ed99592e9cc1e63.tar.gz
px4-nuttx-1376ded6e0aebc3d6d1062518ed99592e9cc1e63.tar.bz2
px4-nuttx-1376ded6e0aebc3d6d1062518ed99592e9cc1e63.zip
Add configuratin options to control the PIC32 configuration words
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3691 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/TODO')
-rw-r--r--nuttx/TODO26
1 files changed, 24 insertions, 2 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index 7345d5b60..64cb151fa 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -1,4 +1,4 @@
-NuttX TODO List (Last updated June 6, 2011)
+NuttX TODO List (Last updated June 10, 2011)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
nuttx/
@@ -17,7 +17,7 @@ nuttx/
(1) Graphics subystem (graphics/)
(1) Pascal add-on (pcode/)
(1) Documentation (Documentation/)
- (4) Build system / Toolchains
+ (5) Build system / Toolchains
(7) Linux/Cywgin simulation (arch/sim)
(4) ARM (arch/arm/)
(1) ARM/C5471 (arch/arm/src/c5471/)
@@ -526,6 +526,28 @@ o Build system
Status: Open
Priority: Low
+ Descritpion: Logic in most setenv.sh files can create the following problem
+ on many platforms:
+
+ $ . ./setenv.sh
+ basename: invalid option -- 'b'
+ Try `basename --help' for more information.
+
+ The problem is that $0 is the current running shell which may include
+ a dash in front:
+
+ $ echo $0
+ -bash
+
+ But often is just /bin/bash (and the problem does not occur. The fix
+ is:
+
+ -if [ "$(basename $0)" = "setenv.sh" ]; then
+ +if [ "$_" = "$0" ] ; then
+ Status: Open
+ Priority: Low. Use of setenv.sh is optional and most platforms do not have
+ this problem. Scripts will be fixed one-at-a-time as is appropropriate.
+
o Linux/Cywgin simulation (arch/sim)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^