summaryrefslogtreecommitdiffstats
path: root/cpukit/wrapup (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-10-10build: Merge score/cpu/*/Makefile.amSebastian Huber1-53/+0
2018-10-10build: Merge libmisc/Makefile.amSebastian Huber1-35/+0
2018-10-10build: Merge libnetworking/Makefile.amSebastian Huber1-4/+0
2018-10-10build: Merge score/Makefile.amSebastian Huber1-1/+0
2018-10-10build: Merge rtems/Makefile.amSebastian Huber1-1/+0
2018-10-10build: Merge posix/Makefile.amSebastian Huber1-1/+0
2018-10-10build: Merge libstdthreads/Makefile.amSebastian Huber1-2/+0
2018-10-10build: Merge librpc/Makefile.amSebastian Huber1-2/+0
2018-10-10build: Merge libpci/Makefile.amSebastian Huber1-4/+0
2018-10-10build: Merge libmd/Makefile.amSebastian Huber1-4/+0
2018-10-10build: Merge libi2c/Makefile.amSebastian Huber1-1/+0
2018-10-10build: Merge libgnat/Makefile.amSebastian Huber1-4/+0
2018-10-10build: Merge libfs/Makefile.amSebastian Huber1-7/+0
2018-10-09build: Merge libdrvmgr/Makefile.amSebastian Huber1-4/+0
2018-10-09build: Merge libdl/Makefile.amSebastian Huber1-4/+0
2018-10-09build: Merge libcsupport/Makefile.amSebastian Huber1-2/+0
2018-10-09build: Merge libcrypt/Makefile.amSebastian Huber1-1/+0
2018-10-09build: Merge libblock/Makefile.amSebastian Huber1-1/+0
2018-10-09build: Merge libfdt/Makefile.amSebastian Huber1-1/+0
2018-10-09build: Merge dev/Makefile.amSebastian Huber1-1/+0
2018-10-09build: Move sapi/Makefile.amSebastian Huber1-1/+1
2018-09-10network: Use kernel/user space header filesSebastian Huber1-2/+0
Add and use <machine/rtems-bsd-kernel-space.h> and <machine/rtems-bsd-user-space.h> similar to the libbsd to avoid command line defines and defines scattered throught the code base. Simplify cpukit/libnetworking/Makefile.am. Update #3375.
2018-05-02libdebugger: Move to separate librarySebastian Huber1-4/+0
Always build remote TCP support since it depends only on the POSIX socket API. It works with the legacy network stack and libbsd. Move it to a separate libdebugger.a library to allow an easy use with libbsd via "-ldebugger -lbsd" otherwise we would have a cyclic dependency between libbsd.a and librtemscpu.a. Update #3419.
2018-04-12build: Add support for automake's silent build support.Chris Johns1-9/+9
2018-03-09network: Optionally install network headersSebastian Huber1-3/+0
Install the network headers only if --enable-networking is specified. Update #3254.
2018-01-25Remove make preinstallChris Johns2-25/+5
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
2017-08-24libmisc/rtems-fdt: Add libmisc/rtems-fdt to the cpukit wrapup.Chris Johns1-0/+1
Updates #3099.
2016-11-29cpukit: Add libdebugger, a remote debugger agent for GDB.Chris Johns1-0/+4
2016-10-13libmisc/xz: Add xz decompression.Chris Johns1-0/+1
Add support to untar XZ compressed files.
2015-10-19libfdt: Merge into librtemscpuSebastian Huber1-0/+1
This allows BSPs to use this library.
2015-10-14libstdthreads: Add C11 threadsSebastian Huber1-0/+1
2015-07-15libcsupport: Workaround for GCC 5.1 and laterSebastian Huber1-0/+1
Disable an optimization which would lead to a recursive calloc() call in calloc().
2015-05-27jffs2: Move into separate librarySebastian Huber1-1/+0
In case the zlib compression was used, then the librtemscpu.a depended on libz.a. To avoid a GCC patch or complicated link flags move the JFFS2 support into a separate library to use a simple "-ljffs2 -lz" to link the executable.
2015-04-17Fix build for non-SPARC targetsSebastian Huber1-0/+6
2015-04-17DRVMGR: added driver manager to cpukit/libdrvmgrDaniel Hellstrom1-2/+1
2015-04-17LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom1-0/+2
2015-03-05Move test support from sapi to libmisc/testsupportSebastian Huber1-0/+1
2014-11-20Add crypt_r(), etc.Sebastian Huber1-0/+1
Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and crypt_sha512_r().
2014-11-20Add I2C driver frameworkSebastian Huber1-0/+1
This I2C driver framework has some major differences compared to libi2c. * It is compatible to the Linux I2C user-space API. * It uses generic IMFS nodes and thus reduces the levels of indirection. * The drivers don't have to mess around with minor numbers to get their state information. * No arbitrary bus controller model is assumed. The main task of an I2C bus controller driver is to process I2C messages. How this is done is private to the driver. * Scatter/gather operations are supported (I2C_M_NOSTART).
2014-11-20libmisc: Add the libmisc/redirector to the wrap up.Chris Johns1-0/+1
2014-10-31cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns1-0/+4
This is a merge of the RTL project.
2013-09-19JFFS2: Add RTEMS supportSebastian Huber1-0/+1
2013-07-26libmisc: Provide libutf8proc conditionallySebastian Huber1-0/+4
2013-06-03libmisc: Add utf8proc-v1.1.5Ralf Kirchner1-0/+1
utf8proc is a small library for processing UTF-8 encoded Unicode strings. Some features are Unicode normalization, stripping of default ignorable characters, case folding and detection of grapheme cluster boundaries. For the time beeing utf8proc is intended to be used for normalizing and folding UTF-8 strings for comparison purposes when adding UTF-8 support to the FAT file system.
2012-05-11Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill1-4/+0
Script does what is expected and tries to do it as smartly as possible. + remove occurrences of two blank comment lines next to each other after Id string line removed. + remove entire comment blocks which only exited to contain CVS Ids + If the processing left a blank line at the top of a file, it was removed.
2012-05-07Revert: Remove CVS IdsJoel Sherrill1-0/+4
See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
2012-05-04Remove CVS-Ids.Ralf Corsépius1-4/+0
2012-02-01Remove all .cvsignore files.Joel Sherrill1-2/+0
2011-03-142011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+1
PR 1762/cpukit * Makefile.am, preinstall.am, libmisc/Makefile.am, wrapup/Makefile.am: Add generic serial mouse driver and mouse parser. The parser code was in the pc386 BSP but was generic so cleaned up and placed here. Serial mouse driver itself is new. * libmisc/mouse/README, libmisc/mouse/mouse_parser.c, libmisc/mouse/mouse_parser.h, libmisc/mouse/serial_mouse.c, libmisc/mouse/serial_mouse.h: New files.
2010-07-142010-07-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+1
* libfs/Makefile.am: Remove reference to imfs_free.c, wrapup/Makefile.am: Split devfs into its own library. * libfs/src/imfs/fifoimfs_init.c, libfs/src/imfs/imfs.h, libfs/src/imfs/imfs_init.c, libfs/src/rfs/rtems-rfs-rtems.c: Use default freenode implementation. * libfs/src/imfs/imfs_free.c: Removed.