source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/configure.ac @ 37dc047

5
Last change on this file since 37dc047 was 37dc047, checked in by Sebastian Huber <sebastian.huber@…>, on 04/21/18 at 08:00:43

bsps: Remove AC_CONFIG_SRCDIR()

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.

  • Property mode set to 100644
File size: 2.4 KB
Line 
1## Process this file with autoconf to produce a configure script.
2
3AC_PREREQ([2.69])
4AC_INIT([rtems-c-src-lib-libbsp-powerpc-mpc8260ads],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
5RTEMS_TOP(../../../../../..)
6RTEMS_SOURCE_TOP
7RTEMS_BUILD_TOP
8RTEMS_BSP_LINKCMDS
9
10RTEMS_CANONICAL_TARGET_CPU
11AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
12RTEMS_BSP_CONFIGURE
13
14
15RTEMS_BSPOPTS_SET_DATA_CACHE_ENABLED([*],[])
16RTEMS_BSPOPTS_HELP_DATA_CACHE_ENABLED
17
18RTEMS_BSPOPTS_SET_INSTRUCTION_CACHE_ENABLED([*],[])
19RTEMS_BSPOPTS_HELP_INSTRUCTION_CACHE_ENABLED
20
21RTEMS_BSPOPTS_SET([UARTS_USE_TERMIOS],[*],[0])
22RTEMS_BSPOPTS_HELP([UARTS_USE_TERMIOS],
23[Define to 1 if you want termios support for every port.
24 Termios support is independent of the choice of UART I/O mode.])
25
26RTEMS_BSPOPTS_SET([CONSOLE_MINOR],[*],[SCC2_MINOR])
27RTEMS_BSPOPTS_HELP([CONSOLE_MINOR],
28[(BSP--console driver) Must be defined to be one of SMC1_MINOR,
29 SMC2_MINOR, SCC2_MINOR, SCC3_MINOR, or SCC4_MINOR.
30 Determines which device will be registered as /dev/console.])
31
32RTEMS_BSPOPTS_SET([UARTS_IO_MODE],[*],[0])
33RTEMS_BSPOPTS_HELP([UARTS_IO_MODE],
34[(BSP--console driver)
35 Define to 0 or 1 if you want polled I/O performed by RTEMS.
36 Define to 1 if you want interrupt-driven performed by RTEMS.
37 Define to 2 if you want polled I/O performed by EPPCBug.
38 There is no provision to have a mix of interrupt-driven and polled I/O
39 ports, except that the printk port may use a different mode from the
40 other ports. If this is done, do not open the printk port from an RTEMS
41 application. With EPPCBug 1.1, if mode 2 is selected, CONSOLE_MINOR
42 must be set to SMC1_MINOR. This is a deficiency of the firmware: it
43 does not perform serial I/O on any port other than its default debug
44 port, which must be SMC1.])
45
46RTEMS_BSPOPTS_SET([PRINTK_MINOR],[*],[SMC2_MINOR])
47RTEMS_BSPOPTS_HELP([PRINTK_MINOR],
48[(BSP--console driver)
49 Must be defined to be one of SMC1_MINOR, SMC2_MINOR, SCC2_MINOR,
50 SCC3_MINOR, or SCC4_MINOR. Determines which device is used for output
51 by printk(). If the port that printk() uses is also used for other
52 I/O (e.g. if  PRINTK_MINOR == \$CONSOLE_MINOR), then both ports should
53 use the same type of I/O, otherwise the drivers will likely conflict with
54 each other.])
55
56RTEMS_BSPOPTS_SET([DISPATCH_HANDLER_STAT],[*],[])
57RTEMS_BSPOPTS_HELP([DISPATCH_HANDLER_STAT],
58[used by irq/irq.c])
59
60
61RTEMS_BSP_CLEANUP_OPTIONS
62
63# Explicitly list a Makefile here
64AC_CONFIG_FILES([Makefile])
65
66RTEMS_PPC_EXCEPTIONS
67
68AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.