[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Couple of minor errors in Getting Started with RTEMS
- Date: Thu, 12 Jan 2006 10:08:47 -0500
- From: rsg at alum.mit.edu (Robert S. Grimes)
- Subject: Couple of minor errors in Getting Started with RTEMS
Hi all,
Just a few documentation errors that should be cleaned up to help new
users (like myself). Nothing major, as even I could figure it out :-P ,
but might help minimize the confusion...
Two little errors in this.
1. On the page below, the instructions for unpacking tar's using bzip
seems wrong; on my Gentoo Linux system, the command given seems to be wrong:
tar xIf ../archive/TOOLNAME.tar.bz2 # for bzip'ed tools
Should be:
tar xjf ../archive/TOOLNAME.tar.bz2 # for bzip'ed tools
My tar doesn't understand the "I".
Bad Page:
http://www.rtems.com/onlinedocs/releases/rtemsdocs-4.6.5/share/rtems/html/started/started00035.html
2. On the page below, these instructions are wrong:
cd tools/gdb-5.2
cat archive/gdb-5.2-rtems-20030211.diff | \
patch -p1
Should be:
cd tools/gdb-5.2
cat ../../archive/gdb-5.2-rtems-20030211.diff | \
patch -p1
Bad Page:
http://www.rtems.com/onlinedocs/releases/rtemsdocs-4.6.5/share/rtems/html/started/started00045.html
While I'm at it, the www.rtems.com/onlinedocs.html page should be
updated to include the current release (4.6.5)! And, under the
Snapshots section, the Current RTEMS Snapshot link sends you to
ss-20030411 - obviously out-of-date!
-Bob