summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/configure.ac (unfollow)
Commit message (Collapse)AuthorFilesLines
2021-09-21build: Remove old build systemSebastian Huber1-145/+0
Close #3250. Close #4081.
2019-11-15bsp/i386: Remove unused BSP_HAS_SMPSebastian Huber1-6/+0
Update #3818.
2018-04-27bsp/pc386: Remove bin2boot supportSebastian Huber1-2/+0
Update #3408. Close #3410.
2018-04-23bsps: Remove AC_CONFIG_SRCDIR()Sebastian Huber1-1/+0
This AC_CONFIG_SRCDIR() is just a sanity check in this insane build system. Since all content of c/src/lib/libbsp/@RTEMS_CPU@/@RTEMS_BSP_FAMILY@ is bound to be moved it makes no sense to keep it. This patch is a part of the BSP source reorganization. Update #3285.
2018-04-12build: Remove subdir-objects from BSP configure.acSebastian Huber1-1/+1
The subdir-objects do not work currently due to BSP sources in bsps and c and the existing build tree layout. Update #3387.
2018-04-11configure: Add subdir-objects to all automake flags.Chris Johns1-1/+1
This option silences warning with automake-1.16.1 allowing us to upgrade to that version. This change has been tested with automake-1.12.6 and automake-1.16.1. It seems version 1.16.1 configures slower than 1.12.6 for the same source and BSP. The newer versions is 6 second slower. Close #3387.
2018-04-04bsps: Move config macros to RTEMS_BSP_CONFIGURESebastian Huber1-7/+0
Provide HAS_NETWORKING and HAS_SMP Automake conditionals for all BSPs. This patch is a part of the BSP source reorganization. Update #3285.
2018-01-25Remove make preinstallChris Johns1-0/+3
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-11-27libbsp/*/*/configure.ac: Remove references to bsp_specs in AC_CONFIG_SRCDIRJoel Sherrill1-1/+1
Updates #3250.
2017-11-22bsps: Simplify RTEMS_BSP_CLEANUP_OPTIONSSebastian Huber1-1/+1
Remove BSP-specific defaults for RTEMS_BSP_CLEANUP_OPTIONS to simplify the BSP configuration and documentation. Change defaults to: BSP_PRESS_KEY_FOR_RESET=0 BSP_RESET_BOARD_AT_EXIT=1 BSP_PRINT_EXCEPTION_CONTEXT=1
2017-07-28Remove Edison BSP.Joel Sherrill1-10/+0
Intel has obsoleted this hardware and the BSP was never completed. closes #3086.
2016-05-11i386/pc386: Add support for the gdb stub to use available console drivers.Chris Johns1-0/+6
Move the gdb stub from the i386 UART code to use the libchip drivers. Use any ports discovered during the probes. Add gdb control to the boot command line. Change the device naming to the full device path, not a partial path. For example /dev/com1.
2016-03-10pc386/configure.ac: Delete incorrect and unused AM_CONDITIONALJoel Sherrill1-1/+0
2015-05-26i386/pc386: default graphics driver changed from VGA to VESA basedJan Dolezal1-15/+23
basic VGA driver can be enabled during configure phase by exporting variable USE_VGA=1 so that it is available in configure environment cirrus driver is enabled the same way by exporting variable USE_CIRRUS_GD5446=1
2015-01-04pc386: Add Edison base supportJoel Sherrill1-0/+10
The current support for the Edison supports a single polled UART for input and output plus a simulated clock tick. The activities forward for supporting the Edison have been posted on the RTEMS mailing lists and at: http://rtemsramblings.blogspot.com/2014/12/intel-edison-and-rtems-road-forward.html
2015-01-04pc386: Add BSP_ENABLE_COM1_COM4 BSP optionJoel Sherrill1-0/+5
This allows the support for the legacy COM1-COM4 serial ports to be completely disabled. It is needed to prevent hangs on some hardware. In particular, the Intel Edison where it is not present.
2015-01-04pc386: Add BSP_ENABLE_IDE BSP optionJoel Sherrill1-0/+5
This allows the IDE support to be completely disabled. It is needed to prevent hangs on some hardware. In particular, the Intel Edison where it is not present.
2015-01-04pc386: Add BSP_ENABLE_VGA BSP optionJoel Sherrill1-0/+5
This allows the VGA and keyboard console to be completely disabled. It is useful on PCs without displays and prevents a very slow boot time on the Intel Edison.
2014-12-05Update bug report URLSebastian Huber1-1/+1
2014-11-20i386/pc386: VESA based frame buffer utilizing real mode interrupt 10hJan Dolezal1-0/+13
2014-11-20i386/pc386: configurable size of descriptor tablesJan Dolezal1-0/+5
2012-09-28pc386: Add Cirrus FB Driver to Makefile and configure.acJoel Sherrill1-0/+8
The user has to explicitly enable this driver, choosing it over the existing (and lame) CGA frame buffer driver using USE_CIRRUS_GD5446=1 on the configure command line.
2012-07-19Require automake-1.12.2.Ralf Corsépius1-1/+1
2012-07-19Require autoconf-2.69.Ralf Corsépius1-1/+1
2012-05-04Remove CVS-Ids.Ralf Corsépius1-2/+0
2011-08-292011-08-29 Joel Sherrill <joel.sherrilL@OARcorp.com>Joel Sherrill1-7/+0
* configure.ac: Formatting. Remove duplication BSP_HAS_SMP.
2011-08-012011-08-01 Jennifer Averett <Jennifer.Averett@OARcorp.com>Jennifer Averett1-0/+6
PR 1802 * Makefile.am, configure.ac, preinstall.am, clock/ckinit.c, start/start16.S, startup/bspstart.c, startup/ldsegs.S: Add SMP support for i386.
2011-03-162011-03-16 Jennifer Averett <jennifer.averett@OARcorp.com>Joel Sherrill1-0/+9
PR 1729/cpukit * Makefile.am, configure.ac: Add next step in SMP support. This adds an allocated array of the Per_CPU structures to support multiple cpus vs a single instance of the structure which is still used if SMP support is disabled. Configuration support is also added to explicitly enable or disable SMP. But SMP can only be enabled for the CPUs which will support it initially -- SPARC and i386. With the stub BSP support, a BSP can be run as a single core SMP system from an RTEMS data structure standpoint.
2011-02-022011-02-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-2/+2
* configure.ac: Require autoconf-2.68, automake-1.11.1.
2011-01-062011-01-06 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* configure.ac: Move comment to correct location.
2009-11-28Whitespace removal.Ralf Corsepius1-7/+7
2009-10-202009-10-20 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-1/+1
* configure.ac: Don't add -ansi -fasm to CFLAGS.
2009-09-152009-09-15 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-1/+0
* configure.ac: Remove RTEMS_BSP_BOOTCARD_OPTIONS.
2009-07-162009-07-16 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-10/+2
* configure.ac: Rename BSP_BOOTCARD_OPTIONS to RTEMS_BSP_BOOTCARD_OPTIONS. Add RTEMS_BSP_CLEANUP_OPTIONS so all BSPs have the same options.
2009-02-112009-02-11 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-12/+10
* configure.ac, start/start16.S: Remove duplicate configure option and add support for the configure time variable BSP_VIDEO_80x50.
2008-12-032008-12-03 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-0/+35
Michael South <msouth@msouth.org> PR 1344/bsps * configure.ac, clock/ckinit.c, timer/timer.c: Add use of TSC for nanoseconds granularity. i8254 is very slow on some systems. TSC use is auto-detected by default.
2008-09-232008-09-23 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* configure.ac: Make letting boot_card() handle work area allocation mandatory. Rename RTEMS_BSP_BOOTCARD_HANDLES_RAM_ALLOCATION to BSP_BOOTCARD_OPTIONS.
2008-09-222008-09-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+9
* Makefile.am, configure.ac, console/inch.c, console/keyboard.c, include/bsp.h: Use standardized bsp_cleanup() which can optionally print a message, poll for user to press key, and call bsp_reset(). Using this eliminates the various bsp_cleanup() implementations which had their own implementation and variety of string constants.
2008-09-182008-09-18 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+2
* Makefile.am, configure.ac, startup/bspstart.c, startup/linkcmds: Add bsp_get_work_area() implementation and use more of the BSP Initialization Framework. * startup/bspgetworkarea.c: New file.
2008-05-062008-05-06 Joel Sherrill <joel.sherrill@OARcorp.com>Joel Sherrill1-1/+0
* configure.ac: Remove spurious line.
2008-03-222008-03-22 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-0/+7
* configure.ac, startup/exit.c: Add BSP_PRESS_KEY_FOR_RESET configuration option. When this is set to one, a clean exit of an application will result in the BSP resetting the hardware without waiting for a human to press a key. * start/start.S, startup/linkcmds: Replace the linkcmds with a version very closely based upon the default in binutils 2.18 for this target. This eliminated weird failures with C++ dtors even in C applications. We had an extra _ on a symbol used in start.S.
2008-03-122008-03-12 Joel Sherrill <joel.sherrill@oarcorp.com>Joel Sherrill1-1/+1
* configure.ac: Fix typo.
2006-12-022006-12-02 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-1/+1
* configure.ac: New BUG-REPORT address.
2006-10-172006-10-17 Ralf Corsépius <ralf.corsepius@rtems.org>Ralf Corsepius1-2/+2
* configure.ac: Require autoconf-2.60. Require automake-1.10.
2006-02-012006-02-01 Joel Sherrill <joel@OARcorp.com>Joel Sherrill1-0/+6
* configure.ac, console/console.c: Add USE_COM1_AS_CONSOLE BSP option. This makes it easy to build the pc386 BSP in a configuration that corresponds to qemu with COM1 redirected to stdio.
2006-01-112006-01-11 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius1-4/+0
* configure.ac: Remove explicit ampolish3 support (now in RTEMS_BSP_CONFIGURE).
2006-01-102006-01-10 Ralf Corsepius <ralf.corsepius@rtems.org>Ralf Corsepius1-0/+4
* configure.ac: Add ampolish3 support. * Makefile.am: Add preinstall.am.
2005-09-292005-09-29 Thomas Doerfler <Thomas.Doerfler@imd-systems.de>Thomas Doerfler1-0/+16
PR 649/bsps * ide/idecfg.c, configure.ac: added configuration items for primary/secondary IDE interface
2004-09-24Fix typo in previous change.Ralf Corsepius1-1/+1
2004-09-242004-09-24 Ralf Corsepius <ralf_corsepius@rtems.org>Ralf Corsepius1-1/+1
* configure.ac: Require automake > 1.9.