summaryrefslogtreecommitdiffstats
path: root/cpukit/wrapup/Makefile.am (follow)
Commit message (Collapse)AuthorAgeFilesLines
* build: Merge score/cpu/*/Makefile.amSebastian Huber2018-10-101-53/+0
|
* build: Merge libmisc/Makefile.amSebastian Huber2018-10-101-35/+0
|
* build: Merge libnetworking/Makefile.amSebastian Huber2018-10-101-4/+0
|
* build: Merge score/Makefile.amSebastian Huber2018-10-101-1/+0
|
* build: Merge rtems/Makefile.amSebastian Huber2018-10-101-1/+0
|
* build: Merge posix/Makefile.amSebastian Huber2018-10-101-1/+0
|
* build: Merge libstdthreads/Makefile.amSebastian Huber2018-10-101-2/+0
|
* build: Merge librpc/Makefile.amSebastian Huber2018-10-101-2/+0
|
* build: Merge libpci/Makefile.amSebastian Huber2018-10-101-4/+0
|
* build: Merge libmd/Makefile.amSebastian Huber2018-10-101-4/+0
|
* build: Merge libi2c/Makefile.amSebastian Huber2018-10-101-1/+0
|
* build: Merge libgnat/Makefile.amSebastian Huber2018-10-101-4/+0
|
* build: Merge libfs/Makefile.amSebastian Huber2018-10-101-7/+0
|
* build: Merge libdrvmgr/Makefile.amSebastian Huber2018-10-091-4/+0
|
* build: Merge libdl/Makefile.amSebastian Huber2018-10-091-4/+0
|
* build: Merge libcsupport/Makefile.amSebastian Huber2018-10-091-2/+0
|
* build: Merge libcrypt/Makefile.amSebastian Huber2018-10-091-1/+0
|
* build: Merge libblock/Makefile.amSebastian Huber2018-10-091-1/+0
|
* build: Merge libfdt/Makefile.amSebastian Huber2018-10-091-1/+0
|
* build: Merge dev/Makefile.amSebastian Huber2018-10-091-1/+0
|
* build: Move sapi/Makefile.amSebastian Huber2018-10-091-1/+1
|
* network: Use kernel/user space header filesSebastian Huber2018-09-101-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.
* libdebugger: Move to separate librarySebastian Huber2018-05-021-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.
* build: Add support for automake's silent build support.Chris Johns2018-04-121-9/+9
|
* network: Optionally install network headersSebastian Huber2018-03-091-3/+0
| | | | | | Install the network headers only if --enable-networking is specified. Update #3254.
* Remove make preinstallChris Johns2018-01-251-1/+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.
* libmisc/rtems-fdt: Add libmisc/rtems-fdt to the cpukit wrapup.Chris Johns2017-08-241-0/+1
| | | | Updates #3099.
* cpukit: Add libdebugger, a remote debugger agent for GDB.Chris Johns2016-11-291-0/+4
|
* libmisc/xz: Add xz decompression.Chris Johns2016-10-131-0/+1
| | | | Add support to untar XZ compressed files.
* libfdt: Merge into librtemscpuSebastian Huber2015-10-191-0/+1
| | | | This allows BSPs to use this library.
* libstdthreads: Add C11 threadsSebastian Huber2015-10-141-0/+1
|
* libcsupport: Workaround for GCC 5.1 and laterSebastian Huber2015-07-151-0/+1
| | | | | Disable an optimization which would lead to a recursive calloc() call in calloc().
* jffs2: Move into separate librarySebastian Huber2015-05-271-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.
* Fix build for non-SPARC targetsSebastian Huber2015-04-171-0/+6
|
* DRVMGR: added driver manager to cpukit/libdrvmgrDaniel Hellstrom2015-04-171-2/+1
|
* LIBPCI: added PCI layer to cpukit/libpciDaniel Hellstrom2015-04-171-0/+2
|
* Move test support from sapi to libmisc/testsupportSebastian Huber2015-03-051-0/+1
|
* Add crypt_r(), etc.Sebastian Huber2014-11-201-0/+1
| | | | | Add crypt_add_format(), crypt_r(), crypt_md5_r(), crypt_sha256_r() and crypt_sha512_r().
* Add I2C driver frameworkSebastian Huber2014-11-201-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).
* libmisc: Add the libmisc/redirector to the wrap up.Chris Johns2014-11-201-0/+1
|
* cpukit: Add libdl with the Runtime Loader (RTL) code.Chris Johns2014-10-311-0/+4
| | | | This is a merge of the RTL project.
* JFFS2: Add RTEMS supportSebastian Huber2013-09-191-0/+1
|
* libmisc: Provide libutf8proc conditionallySebastian Huber2013-07-261-0/+4
|
* libmisc: Add utf8proc-v1.1.5Ralf Kirchner2013-06-031-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.
* Remove All CVS Id Strings Possible Using a ScriptJoel Sherrill2012-05-111-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.
* Revert: Remove CVS IdsJoel Sherrill2012-05-071-0/+4
| | | | | See http://www.rtems.org/pipermail/rtems-devel/2012-May/001006.html for details.
* Remove CVS-Ids.Ralf Corsépius2012-05-041-4/+0
|
* 2011-03-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2011-03-141-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-14 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill2010-07-141-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.
* 2010-06-29 Jennifer.Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett2010-06-291-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | * libcsupport/include/rtems/libio.h, libfs/Makefile.am, libfs/src/defaults/default_chown.c, libfs/src/defaults/default_evalpath.c, libfs/src/defaults/default_freenode.c, libfs/src/defaults/default_fsmount.c, libfs/src/defaults/default_link.c, libfs/src/defaults/default_mount.c, libfs/src/defaults/default_rename.c, libfs/src/defaults/default_statvfs.c, libfs/src/defaults/default_symlink.c, libfs/src/defaults/default_unlink.c, libfs/src/defaults/default_utime.c, libfs/src/devfs/devfs_init.c, libfs/src/dosfs/msdos_init.c, libfs/src/imfs/imfs_init.c, libfs/src/nfsclient/src/nfs.c, libfs/src/rfs/rtems-rfs-rtems.c, wrapup/Makefile.am: Fixed typo in default names. Added default methods into filesystem tables. * libfs/src/defaults/default_close.c, libfs/src/defaults/default_evaluate_link.c, libfs/src/defaults/default_fpathconf.c, libfs/src/defaults/default_fsunmount.c, libfs/src/defaults/default_open.c, libfs/src/defaults/default_unmount.c: New files.