Change some Sourceforge URLs to bitbucket URLs

This commit is contained in:
Gregory Nutt
2015-06-26 17:29:32 -06:00
parent 12f6eb41b2
commit d66532971f
13 changed files with 328 additions and 328 deletions
+1 -1
View File
@@ -3747,7 +3747,7 @@ sudo ln -s libXext.so.6.4.0 libXext.so
</li>
<li><p>
Refer to the readme file in sim configuration
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/configs/sim/README.txt" target="_blank">README.txt</a> file for additional information.
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/configs/sim/README.txt" target="_blank">README.txt</a> file for additional information.
</p></li>
</ul>
</p>
+119 -119
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -108,7 +108,7 @@
<h2>2.1 <a name="binfmthdr">Binary Loader Header Files</a></h2>
<p>
The interface to the binary loader is described in the header file
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/include/nuttx/binfmt/binfmt.h" target="_blank">
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/include/nuttx/binfmt/binfmt.h" target="_blank">
<code>include/nuttx/binfmt/binfmt.h</code></a>.
A brief summary of the data structurs and interfaces prototyped in that header file are listed below.
</p>
@@ -458,7 +458,7 @@ void exepath_release(EXEPATH_HANDLE handle);
<h2>3.1 <a name="symtabhdr">Symbol Table Header Files</a></h2>
<p>
The interface to the symbol table logic is described in the header file
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/include/nuttx/binfmt/symtab.h" target="_blank">
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/include/nuttx/binfmt/symtab.h" target="_blank">
<code>include/nuttx/binfmt/symtab.h</code></a>.
A brief summary of the data structurs and interfaces prototyped in that header file are listed below.
</p>
+1 -1
View File
@@ -41,7 +41,7 @@
<li><a href="NuttXDemandPaging.html" target="main">Demand Paging</a></li>
<li><a href="UsbTrace.html" target="main">USB Trace</a></li>
<li><a href="README.html" target="main">README Files</a></li>
<li><a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/TODO" target="main">To-Do List</a></li>
<li><a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/TODO" target="main">To-Do List</a></li>
</td>
</tr>
<tr>
+1 -1
View File
@@ -18,7 +18,7 @@
There is no &quot;Getting Started&quot; Guide for NuttX yet.
However, most everything that you need to get started with NuttX can be found in the <code>README.txt</code> file located in the top-level NuttX directory.
That <code>README.txt</code> can also be read online in the NuttX GIT repository
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/README.txt" target="_blank">here</a>.
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/README.txt" target="_blank">here</a>.
Just click on &quot;Links to HEAD: (view)&quot; on that page.
</p>
</body>
+1 -1
View File
@@ -27,7 +27,7 @@
<li><a href="http://sourceforge.net/projects/nuttx/files/" target="_top">Downloads</a></li>
<li><a href="http://nuttx.org/doku.php?id=wiki" target="_top">Wiki</a></li>
<li><a href="http://sourceforge.net/projects/nuttx/files/buildroot" target="_top">Toolchains</a></li>
<li><a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/" target="_top">Browse GIT</a></li>
<li><a href="https://bitbucket.org/patacongo/nuttx/src/master/" target="_top">Browse GIT</a></li>
<li><a href="freeports.html" target="header">Free Ports</a></li>
</td>
</tr>
+7 -7
View File
@@ -157,14 +157,14 @@
<ul>
<li>
A dynamic loader that is built into the NuttX core
(See <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/binfmt/" target="_blank">GIT</a>).
(See <a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/binfmt/" target="_blank">GIT</a>).
</li>
<li>
Minor changes to RTOS to support position independent code, and
</li>
<li>
A linker to bind ELF binaries to produce the NXFLAT binary format
(See <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/misc/buildroot/toolchain/nxflat/" target="_blank">GIT).
(See <a href="https://bitbucket.org/patacongo/nuttx/src/master/misc/buildroot/toolchain/nxflat/" target="_blank">GIT).
</li>
</ul>
@@ -287,7 +287,7 @@
The initial release of NXFLAT was made in NuttX version 0.4.9.
Testing is limited to the tests found under <code>apps/examples/nxflat</code> in the source tree.
Some known problems exist
(see the <a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/TODO" target="_blank">TODO</a> list).
(see the <a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/TODO" target="_blank">TODO</a> list).
As such, NXFLAT is currently in an early alpha phase.
</p>
@@ -435,7 +435,7 @@ cat ../syscall/syscall.csv ../libc/libc.csv | sort >tmp.csv
<p>
Below is a snippet from an NXFLAT make file (simplified from NuttX
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/apps/examples/nxflat/tests/hello/Makefile" target="_blank">
<a href="https://bitbucket.org/patacongo/nuttx/src/master/apps/examples/nxflat/tests/hello/Makefile" target="_blank">
Hello, World!</a> example.
<p>
<ul><table width="50%">
@@ -557,18 +557,18 @@ cat ../syscall/syscall.csv ../libc/libc.csv | sort >tmp.csv
<ul>
<li>
The interface to the binary loader is described in the header file
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/include/nuttx/binfmt/binfmt.h" target="_blank">
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/include/nuttx/binfmt/binfmt.h" target="_blank">
<code>include/nuttx/binfmt/binfmt.h</code></a>.
A brief summary of the APIs prototyped in that header file are listed below.
</li>
<li>
NXFLAT APIs needed to register NXFLAT as a binary loader appear in the header file
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/include/nuttx/binfmt/nxflat.h" target="_blank">
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/include/nuttx/binfmt/nxflat.h" target="_blank">
<code>include/nuttx/binfmt/nxflat.h</code></a>.
</li>
<li>
The format of an NXFLAT object itself is described in the header file:
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/include/nuttx/binfmt/nxflat.h" target="_blank">
<a href="https://bitbucket.org/patacongo/nuttx/src/master/nuttx/include/nuttx/binfmt/nxflat.h" target="_blank">
<code>include/nuttx/binfmt/nxflat.h</code></a>.
</li>
</ul>
+2 -2
View File
@@ -667,7 +667,7 @@
The Z80 port was released in nuttx-0.3.6 has been verified using only a
z80 instruction simulator.
The set simulator can be found in the NuttX GIT at
http://sourceforge.net/p/nuttx/git/ci/master/tree/misc/sims/z80sim.
https://bitbucket.org/patacongo/nuttx/src/master/misc/sims/z80sim.
This port also uses the SDCC toolchain (http://sdcc.sourceforge.net/)
(verified with version 2.6.0 and 2.7.0).
</li>
@@ -1060,7 +1060,7 @@
<li><code>configs/z80sim</code>:
z80 Microcontroller. This port uses a Z80 instruction set simulator.
That simulator can be found in the NuttX GIT
<a href="http://sourceforge.net/p/nuttx/git/ci/master/tree/misc/sims/z80sim" target="_blank">here</a>.
<a href="https://bitbucket.org/patacongo/nuttx/src/master/misc/sims/z80sim" target="_blank">here</a>.
This port also the <a href="http://sdcc.sourceforge.net/">SDCC</a> toolchain
under Linux or Cygwin(verified with version 2.6.0).
</li>
+187 -187
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1055,7 +1055,7 @@ config ARCH_BOARD_Z80SIM
---help---
z80 Microcontroller. This port uses a Z80 instruction set simulator.
That simulator can be found in the NuttX GIT at
http://sourceforge.net/p/nuttx/git/ci/master/tree/misc/sims/z80sim.
https://bitbucket.org/patacongo/nuttx/src/master/misc/sims/z80sim.
This port also uses the SDCC toolchain (http://sdcc.sourceforge.net/")
(verified with version 2.6.0).
+1 -1
View File
@@ -683,7 +683,7 @@ configs/z16f2800100zcog
configs/z80sim
z80 Microcontroller. This port uses a Z80 instruction set simulator.
That simulator can be found in the NuttX GIT at
http://sourceforge.net/p/nuttx/git/ci/master/tree/misc/sims/z80sim.
https://bitbucket.org/patacongo/nuttx/src/master/misc/sims/z80sim.
This port also uses the SDCC toolchain (http://sdcc.sourceforge.net/")
(verified with version 2.6.0).
+1 -1
View File
@@ -54,7 +54,7 @@ NOTE: See the toolchain issues above -- you may not want to waste your time.
Check out the misc/buildroot module. GIT checkout instructions:
http://sourceforge.net/p/nuttx/git/ci/master/tree/misc/buildroot/
https://bitbucket.org/patacongo/nuttx/src/master/misc/buildroot/
Make the archive directory:
+4 -4
View File
@@ -2624,7 +2624,7 @@ int main(int argc, char **argv, char **envp)
body(" That configuration tool uses <code>Kconfig</code> files that can be found through the NuttX source tree.\n");
body(" Each <code>Kconfig</code> files contains declarations of configuration variables.\n");
body(" Each configuration variable provides one configuration option for the NuttX RTOS.\n");
body(" This configurable options are descrived in this document.\n");
body(" This configurable options are described in this document.\n");
body("</p>\n");
body("<p>\n");
body(" <b>Main Menu</b>.\n");
@@ -2633,10 +2633,10 @@ int main(int argc, char **argv, char **envp)
body(" The main menu is the name give to the opening menu display after this command is executed.\n");
body("</p>\n");
body("<p>\n");
body(" <b>Mainenance Note</b>.\n");
body(" This documenation was auto-generated using the <a href=\"http://sourceforge.net/p/nuttx/git/ci/master/tree/nuttx/tools/kconfig2html.c\">kconfig2html</a> tool\n");
body(" <b>Maintenance Note</b>.\n");
body(" This documentation was auto-generated using the <a href=\"https://bitbucket.org/patacongo/nuttx/src/master/nuttx/tools/kconfig2html.c\">kconfig2html</a> tool\n");
body(" That tool analyzes the NuttX <code>Kconfig</code> files and generates this HTML document.\n");
body(" This HTML document file should not be editted manually.\n");
body(" This HTML document file should not be edited manually.\n");
body(" In order to make changes to this document, you should instead modify the <code>Kconfig</code> file(s) that were used to generated this document and then execute the <code>kconfig2html</code> again to regenerate the HTML document file.\n");
body("</p>\n");