diff --git a/READMEconvertingR3.14.0alpha2AppsTobeta1.html b/READMEconvertingR3.14.0alpha2AppsTobeta1.html index b0ff9faf1..a1178a312 100644 --- a/READMEconvertingR3.14.0alpha2AppsTobeta1.html +++ b/READMEconvertingR3.14.0alpha2AppsTobeta1.html @@ -117,9 +117,26 @@ registerRecordDeviceDriver changes
The created file registerRecordDeviceDriver.cpp is now used for all target architectures. Thus in your application src Makefiles
change example_SRCS_DEFAULT += example_registerRecordDeviceDriver.cpp -
to  example_SRCS += example_registerRecordDeviceDriver.cpp
+
to  example_SRCS += example_registerRecordDeviceDriver.cpp +
 
+

+RTEMS-specific pathname changes

+ +
1. The RTEMS TFTP remote filesystem no longer ignores leading +`../' components in path names.  All st.cmd file lines with path names +of the form dbLoadRecords("../../db/dbExample1.db","user=norume") +
must be changed to +
dbLoadRecords("db/dbExample1.db","user=norume") +

The makeBaseApp.pl script distributed with R3.14-beta1 creates st.cmd +scripts with the proper path names. +

2. The RTEMS TFTP remote filesystem supports a limited set of chdir +operations. +
All paths passed to chdir (or to the IOC shell `cd' command) must end +in a `/' +
character.

+