Changeset 692b9f7 in rtems


Ignore:
Timestamp:
10/28/98 19:17:16 (25 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
b4e3b2b
Parents:
e0713641
Message:

Merged Vista SCORE603e, Radstone PPCn_60x, and DY-4 DMV177 BSPs along
with libchip.

Files:
19 edited

Legend:

Unmodified
Added
Removed
  • aclocal.m4

    re0713641 r692b9f7  
    362362  RTEMS_PATH_TOOL(OBJCOPY_FOR_TARGET,objcopy,no)
    363363  RTEMS_PATH_TOOL(SIZE_FOR_TARGET,size,no)
     364  RTEMS_PATH_TOOL(STRIP_FOR_TARGET,strip,no)
    364365])
    365366
  • aclocal/canonicalize-tools.m4

    re0713641 r692b9f7  
    9494  RTEMS_PATH_TOOL(OBJCOPY_FOR_TARGET,objcopy,no)
    9595  RTEMS_PATH_TOOL(SIZE_FOR_TARGET,size,no)
     96  RTEMS_PATH_TOOL(STRIP_FOR_TARGET,strip,no)
    9697])
  • c/Makefile.in

    re0713641 r692b9f7  
    4444    lib/include/libc lib/include/libc/sys \
    4545    lib/include/motorola lib/include/zilog \
     46    lib/include/libchip \
    4647    $(LIBNETWORKING) \
    4748    $(LIBRTEMSCPLUSPLUS) \
  • c/src/exec/libcsupport/include/sys/termios.h

    re0713641 r692b9f7  
    141141#define CRTSCTS   020000000000          /* flow control */
    142142
     143#define RTEMS_TERMIOS_NUMBER_BAUD_RATES 20
     144
    143145/* c_lflag bits */
    144146#define ISIG    0000001
  • c/src/lib/Makefile.in

    re0713641 r692b9f7  
    2525LIBHWAPI=$(wildcard libhwapi)
    2626
    27 SUB_DIRS=start include $(NETWORKING_INCLUDE) libmisc libc libcpu libbsp \
    28          $(LIBNETWORKING) $(LIBHWAPI) $(LIBRTEMSCPLUSPLUS) wrapup
     27SUB_DIRS=start include $(NETWORKING_INCLUDE) libmisc \
     28         libc libchip libcpu libbsp $(LIBNETWORKING) \
     29         $(LIBHWAPI) $(LIBRTEMSCPLUSPLUS) wrapup
  • c/src/lib/include/sys/termios.h

    re0713641 r692b9f7  
    141141#define CRTSCTS   020000000000          /* flow control */
    142142
     143#define RTEMS_TERMIOS_NUMBER_BAUD_RATES 20
     144
    143145/* c_lflag bits */
    144146#define ISIG    0000001
  • c/src/lib/libchip/serial/mc68681.c

    re0713641 r692b9f7  
    657657
    658658  if(ucLineStatus & MC68681_IR_TX_READY) {
    659     rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1);
    660     if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) {
     659    if (rtems_termios_dequeue_characters(
     660         Console_Port_Data[minor].termios_data, 1)) {
    661661      Console_Port_Data[minor].bActive = FALSE;
    662662      mc68681_enable_interrupts(minor, MC68681_IMR_ENABLE_ALL_EXCEPT_TX);
  • c/src/lib/libchip/serial/ns16550.c

    re0713641 r692b9f7  
    489489
    490490    rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1);
    491     if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) {
     491    if (rtems_termios_dequeue_characters(
     492         Console_Port_Data[minor].termios_data, 1)) {
    492493        if (Console_Port_Tbl[minor].pDeviceFlow != &ns16550_flow_RTSCTS) {
    493494          ns16550_negate_RTS(minor);
  • c/src/lib/libchip/serial/z85c30.c

    re0713641 r692b9f7  
    605605 
    606606    rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1);
    607     if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) {
     607    if (rtems_termios_dequeue_characters(
     608         Console_Port_Data[minor].termios_data, 1)) {
    608609      if (Console_Port_Tbl[minor].pDeviceFlow != &z85c30_flow_RTSCTS) {
    609610        z85c30_negate_RTS(minor);
  • c/src/lib/wrapup/Makefile.in

    re0713641 r692b9f7  
    2121     $(wildcard $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a) \
    2222     $(wildcard $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a) \
     23     $(wildcard $(PROJECT_RELEASE)/lib/librtcio$(LIB_VARIANT).a) \
     24     $(wildcard $(PROJECT_RELEASE)/lib/libserialio$(LIB_VARIANT).a) \
    2325     $(PROJECT_RELEASE)/lib/libcsupport$(LIB_VARIANT).a \
    2426     $(PROJECT_RELEASE)/lib/libmisc$(LIB_VARIANT).a \
  • c/src/libchip/serial/mc68681.c

    re0713641 r692b9f7  
    657657
    658658  if(ucLineStatus & MC68681_IR_TX_READY) {
    659     rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1);
    660     if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) {
     659    if (rtems_termios_dequeue_characters(
     660         Console_Port_Data[minor].termios_data, 1)) {
    661661      Console_Port_Data[minor].bActive = FALSE;
    662662      mc68681_enable_interrupts(minor, MC68681_IMR_ENABLE_ALL_EXCEPT_TX);
  • c/src/libchip/serial/ns16550.c

    re0713641 r692b9f7  
    489489
    490490    rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1);
    491     if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) {
     491    if (rtems_termios_dequeue_characters(
     492         Console_Port_Data[minor].termios_data, 1)) {
    492493        if (Console_Port_Tbl[minor].pDeviceFlow != &ns16550_flow_RTSCTS) {
    493494          ns16550_negate_RTS(minor);
  • c/src/libchip/serial/z85c30.c

    re0713641 r692b9f7  
    605605 
    606606    rtems_termios_dequeue_characters(Console_Port_Data[minor].termios_data, 1);
    607     if (rtems_termios_is_more_to_tx( Console_Port_Data[minor].termios_data )) {
     607    if (rtems_termios_dequeue_characters(
     608         Console_Port_Data[minor].termios_data, 1)) {
    608609      if (Console_Port_Tbl[minor].pDeviceFlow != &z85c30_flow_RTSCTS) {
    609610        z85c30_negate_RTS(minor);
  • c/src/wrapup/Makefile.in

    re0713641 r692b9f7  
    2121     $(wildcard $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a) \
    2222     $(wildcard $(PROJECT_RELEASE)/lib/libcpu$(LIB_VARIANT).a) \
     23     $(wildcard $(PROJECT_RELEASE)/lib/librtcio$(LIB_VARIANT).a) \
     24     $(wildcard $(PROJECT_RELEASE)/lib/libserialio$(LIB_VARIANT).a) \
    2325     $(PROJECT_RELEASE)/lib/libcsupport$(LIB_VARIANT).a \
    2426     $(PROJECT_RELEASE)/lib/libmisc$(LIB_VARIANT).a \
  • configure

    re0713641 r692b9f7  
    25042504fi
    25052505
     2506 
     2507echo $ac_n "checking target's strip""... $ac_c" 1>&6
     2508echo "configure:2509: checking target's strip" >&5
     2509if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then
     2510  echo $ac_n "(cached) $ac_c" 1>&6
     2511else
     2512  :
     2513fi
     2514
     2515echo "$ac_t""$ac_cv_path_STRIP_FOR_TARGET" 1>&6
     2516
     2517if test -n "$ac_cv_path_STRIP_FOR_TARGET"; then
     2518    STRIP_FOR_TARGET=$ac_cv_path_STRIP_FOR_TARGET
     2519else
     2520    if test -z "$STRIP_FOR_TARGET" ; then
     2521    if test "$rtems_cv_prog_gcc" = "yes"; then
     2522      # We are using gcc, ask it about its tool
     2523      # NOTE: Necessary if gcc was configured to use the target's
     2524      # native tools or uses prefixes for gnutools (e.g. gas instead of as)
     2525       case $host_os in
     2526  *cygwin32*)
     2527            STRIP_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=strip | sed -e 's%\\\\%/%g' `
     2528    ;;
     2529  *)
     2530    STRIP_FOR_TARGET=`$CC_FOR_TARGET --print-prog-name=strip`
     2531    ;;
     2532  esac
     2533
     2534    fi
     2535  else
     2536    # The user set an environment variable.
     2537    # Check whether it is an absolute path, otherwise AC_PATH_PROG
     2538    # will override the environment variable, which isn't what the user
     2539    # intends
     2540    echo $ac_n "checking whether environment variable STRIP_FOR_TARGET is an absolute path""... $ac_c" 1>&6
     2541echo "configure:2542: checking whether environment variable STRIP_FOR_TARGET is an absolute path" >&5
     2542    case "$STRIP_FOR_TARGET" in
     2543    /*) # valid
     2544      echo "$ac_t"""yes"" 1>&6
     2545    ;;
     2546    *)  # invalid for AC_PATH_PROG
     2547      echo "$ac_t"""no"" 1>&6
     2548      { echo "configure: error: ***
     2549        Environment variable STRIP_FOR_TARGET should ether
     2550        be unset (preferred) or contain an absolute path" 1>&2; exit 1; }
     2551    ;;
     2552    esac
     2553  fi
     2554
     2555  # Extract the first word of ""$program_prefix"strip", so it can be a program name with args.
     2556set dummy "$program_prefix"strip; ac_word=$2
     2557echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
     2558echo "configure:2559: checking for $ac_word" >&5
     2559if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then
     2560  echo $ac_n "(cached) $ac_c" 1>&6
     2561else
     2562  case "$STRIP_FOR_TARGET" in
     2563  /*)
     2564  ac_cv_path_STRIP_FOR_TARGET="$STRIP_FOR_TARGET" # Let the user override the test with a path.
     2565  ;;
     2566  *)
     2567  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
     2568  for ac_dir in $PATH; do
     2569    test -z "$ac_dir" && ac_dir=.
     2570    if test -f $ac_dir/$ac_word; then
     2571      ac_cv_path_STRIP_FOR_TARGET="$ac_dir/$ac_word"
     2572      break
     2573    fi
     2574  done
     2575  IFS="$ac_save_ifs"
     2576  test -z "$ac_cv_path_STRIP_FOR_TARGET" && ac_cv_path_STRIP_FOR_TARGET="no"
     2577  ;;
     2578esac
     2579fi
     2580STRIP_FOR_TARGET="$ac_cv_path_STRIP_FOR_TARGET"
     2581if test -n "$STRIP_FOR_TARGET"; then
     2582  echo "$ac_t""$STRIP_FOR_TARGET" 1>&6
     2583else
     2584  echo "$ac_t""no" 1>&6
     2585fi
     2586
     2587fi
     2588
    25062589
    25072590
    25082591if test "${target_cpu}" = "i386"; then
    25092592    echo $ac_n "checking for 16 bit mode assembler support""... $ac_c" 1>&6
    2510 echo "configure:2511: checking for 16 bit mode assembler support" >&5
     2593echo "configure:2594: checking for 16 bit mode assembler support" >&5
    25112594if eval "test \"`echo '$''{'rtems_cv_prog_gas_code16'+set}'`\" = set"; then
    25122595  echo $ac_n "(cached) $ac_c" 1>&6
     
    25182601         lgdt 0
    25192602EOF
    2520       if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2521: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
     2603      if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2604: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
    25212604        rtems_cv_prog_gas_code16=yes
    25222605      else
     
    25332616set dummy gcc; ac_word=$2
    25342617echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2535 echo "configure:2536: checking for $ac_word" >&5
     2618echo "configure:2619: checking for $ac_word" >&5
    25362619if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    25372620  echo $ac_n "(cached) $ac_c" 1>&6
     
    25622645set dummy cc; ac_word=$2
    25632646echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    2564 echo "configure:2565: checking for $ac_word" >&5
     2647echo "configure:2648: checking for $ac_word" >&5
    25652648if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
    25662649  echo $ac_n "(cached) $ac_c" 1>&6
     
    26102693
    26112694echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
    2612 echo "configure:2613: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
     2695echo "configure:2696: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
    26132696
    26142697ac_ext=c
     
    26202703
    26212704cat > conftest.$ac_ext <<EOF
    2622 #line 2623 "configure"
     2705#line 2706 "configure"
    26232706#include "confdefs.h"
    26242707main(){return(0);}
    26252708EOF
    2626 if { (eval echo configure:2627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     2709if { (eval echo configure:2710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    26272710  ac_cv_prog_cc_works=yes
    26282711  # If we can't run a trivial program, we are probably using a cross compiler.
     
    26442727fi
    26452728echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
    2646 echo "configure:2647: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
     2729echo "configure:2730: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
    26472730echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
    26482731cross_compiling=$ac_cv_prog_cc_cross
    26492732
    26502733echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
    2651 echo "configure:2652: checking whether we are using GNU C" >&5
     2734echo "configure:2735: checking whether we are using GNU C" >&5
    26522735if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
    26532736  echo $ac_n "(cached) $ac_c" 1>&6
     
    26582741#endif
    26592742EOF
    2660 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2661: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     2743if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2744: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
    26612744  ac_cv_prog_gcc=yes
    26622745else
     
    26732756  CFLAGS=
    26742757  echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
    2675 echo "configure:2676: checking whether ${CC-cc} accepts -g" >&5
     2758echo "configure:2759: checking whether ${CC-cc} accepts -g" >&5
    26762759if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
    26772760  echo $ac_n "(cached) $ac_c" 1>&6
     
    27022785
    27032786echo $ac_n "checking for Cygwin32 environment""... $ac_c" 1>&6
    2704 echo "configure:2705: checking for Cygwin32 environment" >&5
     2787echo "configure:2788: checking for Cygwin32 environment" >&5
    27052788if eval "test \"`echo '$''{'rtems_cv_cygwin32'+set}'`\" = set"; then
    27062789  echo $ac_n "(cached) $ac_c" 1>&6
    27072790else
    27082791  cat > conftest.$ac_ext <<EOF
    2709 #line 2710 "configure"
     2792#line 2793 "configure"
    27102793#include "confdefs.h"
    27112794
     
    27142797; return 0; }
    27152798EOF
    2716 if { (eval echo configure:2717: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     2799if { (eval echo configure:2800: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    27172800  rm -rf conftest*
    27182801  rtems_cv_cygwin32=yes
     
    27322815
    27332816echo $ac_n "checking for executable suffix""... $ac_c" 1>&6
    2734 echo "configure:2735: checking for executable suffix" >&5
     2817echo "configure:2818: checking for executable suffix" >&5
    27352818if eval "test \"`echo '$''{'rtems_cv_exeext'+set}'`\" = set"; then
    27362819  echo $ac_n "(cached) $ac_c" 1>&6
     
    27732856do
    27742857echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    2775 echo "configure:2776: checking for $ac_func" >&5
     2858echo "configure:2859: checking for $ac_func" >&5
    27762859if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    27772860  echo $ac_n "(cached) $ac_c" 1>&6
    27782861else
    27792862  cat > conftest.$ac_ext <<EOF
    2780 #line 2781 "configure"
     2863#line 2864 "configure"
    27812864#include "confdefs.h"
    27822865/* System header to define __stub macros and hopefully few prototypes,
     
    28012884; return 0; }
    28022885EOF
    2803 if { (eval echo configure:2804: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     2886if { (eval echo configure:2887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    28042887  rm -rf conftest*
    28052888  eval "ac_cv_func_$ac_func=yes"
     
    28302913
    28312914echo $ac_n "checking whether $RTEMS_HOST supports System V semaphores""... $ac_c" 1>&6
    2832 echo "configure:2833: checking whether $RTEMS_HOST supports System V semaphores" >&5
     2915echo "configure:2916: checking whether $RTEMS_HOST supports System V semaphores" >&5
    28332916if eval "test \"`echo '$''{'rtems_cv_sysv_sem'+set}'`\" = set"; then
    28342917  echo $ac_n "(cached) $ac_c" 1>&6
     
    28392922else
    28402923  cat > conftest.$ac_ext <<EOF
    2841 #line 2842 "configure"
     2924#line 2925 "configure"
    28422925#include "confdefs.h"
    28432926
     
    28652948
    28662949EOF
    2867 if { (eval echo configure:2868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     2950if { (eval echo configure:2951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    28682951then
    28692952  rtems_cv_sysv_sem="yes"
     
    28882971
    28892972echo $ac_n "checking whether $RTEMS_HOST supports System V shared memory""... $ac_c" 1>&6
    2890 echo "configure:2891: checking whether $RTEMS_HOST supports System V shared memory" >&5
     2973echo "configure:2974: checking whether $RTEMS_HOST supports System V shared memory" >&5
    28912974if eval "test \"`echo '$''{'rtems_cv_sysv_shm'+set}'`\" = set"; then
    28922975  echo $ac_n "(cached) $ac_c" 1>&6
     
    28972980else
    28982981  cat > conftest.$ac_ext <<EOF
    2899 #line 2900 "configure"
     2982#line 2983 "configure"
    29002983#include "confdefs.h"
    29012984
     
    29132996
    29142997EOF
    2915 if { (eval echo configure:2916: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     2998if { (eval echo configure:2999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    29162999then
    29173000  rtems_cv_sysv_shm="yes"
     
    29363019
    29373020echo $ac_n "checking whether $RTEMS_HOST supports System V messages""... $ac_c" 1>&6
    2938 echo "configure:2939: checking whether $RTEMS_HOST supports System V messages" >&5
     3021echo "configure:3022: checking whether $RTEMS_HOST supports System V messages" >&5
    29393022if eval "test \"`echo '$''{'rtems_cv_sysv_msg'+set}'`\" = set"; then
    29403023  echo $ac_n "(cached) $ac_c" 1>&6
     
    29453028else
    29463029  cat > conftest.$ac_ext <<EOF
    2947 #line 2948 "configure"
     3030#line 3031 "configure"
    29483031#include "confdefs.h"
    29493032
     
    29613044
    29623045EOF
    2963 if { (eval echo configure:2964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     3046if { (eval echo configure:3047: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    29643047then
    29653048  rtems_cv_sysv_msg="yes"
     
    29863069
    29873070echo $ac_n "checking for Makefile.in in c/src/exec/score/tools/$target_cpu""... $ac_c" 1>&6
    2988 echo "configure:2989: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5
     3071echo "configure:3072: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5
    29893072if test -d $srcdir/c/src/exec/score/tools/$target_cpu; then
    29903073  rtems_av_save_dir=`pwd`;
     
    30013084
    30023085echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6
    3003 echo "configure:3004: checking for Makefile.in in c/src/exec/rtems" >&5
     3086echo "configure:3087: checking for Makefile.in in c/src/exec/rtems" >&5
    30043087if test -d $srcdir/c/src/exec/rtems; then
    30053088  rtems_av_save_dir=`pwd`;
     
    30163099
    30173100echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6
    3018 echo "configure:3019: checking for Makefile.in in c/src/exec/sapi" >&5
     3101echo "configure:3102: checking for Makefile.in in c/src/exec/sapi" >&5
    30193102if test -d $srcdir/c/src/exec/sapi; then
    30203103  rtems_av_save_dir=`pwd`;
     
    30333116 
    30343117echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6
    3035 echo "configure:3036: checking for Makefile.in in c/src/exec/posix" >&5
     3118echo "configure:3119: checking for Makefile.in in c/src/exec/posix" >&5
    30363119if test -d $srcdir/c/src/exec/posix; then
    30373120  rtems_av_save_dir=`pwd`;
     
    30553138  if test -z "$rtems_bsp"; then
    30563139    echo $ac_n "checking for bsps""... $ac_c" 1>&6
    3057 echo "configure:3058: checking for bsps" >&5
     3140echo "configure:3141: checking for bsps" >&5
    30583141    files=`ls $srcdir/c/src/lib/libbsp/$target_cpu`
    30593142    for file in $files; do
     
    31203203       
    31213204echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir""... $ac_c" 1>&6
    3122 echo "configure:3123: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5
     3205echo "configure:3206: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5
    31233206if test -d $srcdir/c/src/lib/libbsp/$bspcpudir$bspdir; then
    31243207  rtems_av_save_dir=`pwd`;
     
    31353218       
    31363219echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared""... $ac_c" 1>&6
    3137 echo "configure:3138: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5
     3220echo "configure:3221: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5
    31383221if test -d $srcdir/c/src/lib/libbsp/${bspcpudir}shared; then
    31393222  rtems_av_save_dir=`pwd`;
     
    31583241
    31593242echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$target_cpu""... $ac_c" 1>&6
    3160 echo "configure:3161: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5
     3243echo "configure:3244: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5
    31613244if test -d $srcdir/c/src/lib/libcpu/$target_cpu; then
    31623245  rtems_av_save_dir=`pwd`;
     
    31753258 
    31763259echo $ac_n "checking for Makefile.in in c/src/lib/start/$target_cpu""... $ac_c" 1>&6
    3177 echo "configure:3178: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5
     3260echo "configure:3261: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5
    31783261if test -d $srcdir/c/src/lib/start/$target_cpu; then
    31793262  rtems_av_save_dir=`pwd`;
     
    32073290# If the TCP/IP stack is enabled, then find all TCP/IP Makefiles
    32083291echo $ac_n "checking if networking is enabled? ""... $ac_c" 1>&6
    3209 echo "configure:3210: checking if networking is enabled? " >&5
     3292echo "configure:3293: checking if networking is enabled? " >&5
    32103293echo "$ac_t""$RTEMS_HAS_NETWORKING" 1>&6
    32113294if test "$RTEMS_HAS_NETWORKING" = "yes"; then
    32123295 
    32133296echo $ac_n "checking for Makefile.in in c/src/lib/libnetworking""... $ac_c" 1>&6
    3214 echo "configure:3215: checking for Makefile.in in c/src/lib/libnetworking" >&5
     3297echo "configure:3298: checking for Makefile.in in c/src/lib/libnetworking" >&5
    32153298if test -d $srcdir/c/src/lib/libnetworking; then
    32163299  rtems_av_save_dir=`pwd`;
     
    32343317# If the tests are enabled, then find all the test suite Makefiles
    32353318echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6
    3236 echo "configure:3237: checking if the test suites are enabled? " >&5
     3319echo "configure:3320: checking if the test suites are enabled? " >&5
    32373320tests_enabled=yes
    32383321# Check whether --enable-tests or --disable-tests was given.
     
    32533336
    32543337echo $ac_n "checking for Makefile.in in c/src/tests/tools/$target_cpu""... $ac_c" 1>&6
    3255 echo "configure:3256: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5
     3338echo "configure:3339: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5
    32563339if test -d $srcdir/c/src/tests/tools/$target_cpu; then
    32573340  rtems_av_save_dir=`pwd`;
     
    32703353   
    32713354echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6
    3272 echo "configure:3273: checking for Makefile.in in c/src/tests/libtests" >&5
     3355echo "configure:3356: checking for Makefile.in in c/src/tests/libtests" >&5
    32733356if test -d $srcdir/c/src/tests/libtests; then
    32743357  rtems_av_save_dir=`pwd`;
     
    32853368   
    32863369echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6
    3287 echo "configure:3288: checking for Makefile.in in c/src/tests/sptests" >&5
     3370echo "configure:3371: checking for Makefile.in in c/src/tests/sptests" >&5
    32883371if test -d $srcdir/c/src/tests/sptests; then
    32893372  rtems_av_save_dir=`pwd`;
     
    33003383   
    33013384echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6
    3302 echo "configure:3303: checking for Makefile.in in c/src/tests/tmtests" >&5
     3385echo "configure:3386: checking for Makefile.in in c/src/tests/tmtests" >&5
    33033386if test -d $srcdir/c/src/tests/tmtests; then
    33043387  rtems_av_save_dir=`pwd`;
     
    33153398   
    33163399echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6
    3317 echo "configure:3318: checking for Makefile.in in c/src/tests/mptests" >&5
     3400echo "configure:3401: checking for Makefile.in in c/src/tests/mptests" >&5
    33183401if test -d $srcdir/c/src/tests/mptests; then
    33193402  rtems_av_save_dir=`pwd`;
     
    33313414     
    33323415echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6
    3333 echo "configure:3334: checking for Makefile.in in c/src/tests/psxtests" >&5
     3416echo "configure:3417: checking for Makefile.in in c/src/tests/psxtests" >&5
    33343417if test -d $srcdir/c/src/tests/psxtests; then
    33353418  rtems_av_save_dir=`pwd`;
     
    33493432# If the HWAPI is enabled, the find the HWAPI Makefiles
    33503433echo $ac_n "checking if the HWAPI is enabled? ""... $ac_c" 1>&6
    3351 echo "configure:3352: checking if the HWAPI is enabled? " >&5
     3434echo "configure:3435: checking if the HWAPI is enabled? " >&5
    33523435# Check whether --enable-hwapi or --disable-hwapi was given.
    33533436if test "${enable_hwapi+set}" = set; then
     
    33603443           
    33613444echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6
    3362 echo "configure:3363: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5
     3445echo "configure:3446: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5
    33633446if test -d $srcdir/c/src/lib/libhwapi/analog; then
    33643447  rtems_av_save_dir=`pwd`;
     
    33753458           
    33763459echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6
    3377 echo "configure:3378: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5
     3460echo "configure:3461: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5
    33783461if test -d $srcdir/c/src/lib/libhwapi/discrete; then
    33793462  rtems_av_save_dir=`pwd`;
     
    33903473           
    33913474echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6
    3392 echo "configure:3393: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5
     3475echo "configure:3476: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5
    33933476if test -d $srcdir/c/src/lib/libhwapi/drivers; then
    33943477  rtems_av_save_dir=`pwd`;
     
    34053488           
    34063489echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6
    3407 echo "configure:3408: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5
     3490echo "configure:3491: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5
    34083491if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then
    34093492  rtems_av_save_dir=`pwd`;
     
    34203503           
    34213504echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6
    3422 echo "configure:3423: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5
     3505echo "configure:3506: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5
    34233506if test -d $srcdir/c/src/lib/libhwapi/serial; then
    34243507  rtems_av_save_dir=`pwd`;
     
    34353518           
    34363519echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6
    3437 echo "configure:3438: checking for Makefile.in in c/src/lib/libhwapi/support" >&5
     3520echo "configure:3521: checking for Makefile.in in c/src/lib/libhwapi/support" >&5
    34383521if test -d $srcdir/c/src/lib/libhwapi/support; then
    34393522  rtems_av_save_dir=`pwd`;
     
    34503533           
    34513534echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6
    3452 echo "configure:3453: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5
     3535echo "configure:3536: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5
    34533536if test -d $srcdir/c/src/lib/libhwapi/wrapup; then
    34543537  rtems_av_save_dir=`pwd`;
     
    35003583
    35013584echo $ac_n "checking for Makefile.in in c/build-tools""... $ac_c" 1>&6
    3502 echo "configure:3503: checking for Makefile.in in c/build-tools" >&5
     3585echo "configure:3586: checking for Makefile.in in c/build-tools" >&5
    35033586if test -d $srcdir/c/build-tools; then
    35043587  rtems_av_save_dir=`pwd`;
     
    35153598
    35163599echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6
    3517 echo "configure:3518: checking for Makefile.in in make" >&5
     3600echo "configure:3601: checking for Makefile.in in make" >&5
    35183601if test -d $srcdir/make; then
    35193602  rtems_av_save_dir=`pwd`;
     
    35293612
    35303613
     3614echo $ac_n "checking for Makefile.in in c/src/lib/libchip""... $ac_c" 1>&6
     3615echo "configure:3616: checking for Makefile.in in c/src/lib/libchip" >&5
     3616if test -d $srcdir/c/src/lib/libchip; then
     3617  rtems_av_save_dir=`pwd`;
     3618  cd $srcdir;
     3619  rtems_av_tmp=`find c/src/lib/libchip -name "Makefile.in" -print | sed "s/Makefile\.in/%/" | sort | sed "s/%/Makefile/"`
     3620  makefiles="$makefiles $rtems_av_tmp";
     3621  cd $rtems_av_save_dir;
     3622  echo "$ac_t""done" 1>&6
     3623else
     3624  echo "$ac_t""no" 1>&6
     3625fi
     3626
     3627
     3628
    35313629echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6
    3532 echo "configure:3533: checking for Makefile.in in c/src/lib/libmisc" >&5
     3630echo "configure:3631: checking for Makefile.in in c/src/lib/libmisc" >&5
    35333631if test -d $srcdir/c/src/lib/libmisc; then
    35343632  rtems_av_save_dir=`pwd`;
     
    35453643
    35463644echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6
    3547 echo "configure:3548: checking for Makefile.in in c/src/tests/samples" >&5
     3645echo "configure:3646: checking for Makefile.in in c/src/tests/samples" >&5
    35483646if test -d $srcdir/c/src/tests/samples; then
    35493647  rtems_av_save_dir=`pwd`;
     
    37683866s%@OBJCOPY_FOR_TARGET@%$OBJCOPY_FOR_TARGET%g
    37693867s%@SIZE_FOR_TARGET@%$SIZE_FOR_TARGET%g
     3868s%@STRIP_FOR_TARGET@%$STRIP_FOR_TARGET%g
    37703869s%@CC@%$CC%g
    37713870s%@EXEEXT@%$EXEEXT%g
  • configure.in

    re0713641 r692b9f7  
    482482RTEMS_CHECK_MAKEFILE(c/build-tools)
    483483RTEMS_CHECK_MAKEFILE(make)
     484RTEMS_CHECK_MAKEFILE(c/src/lib/libchip)
    484485RTEMS_CHECK_MAKEFILE(c/src/lib/libmisc)
    485486RTEMS_CHECK_MAKEFILE(c/src/tests/samples)
  • cpukit/libcsupport/include/sys/termios.h

    re0713641 r692b9f7  
    141141#define CRTSCTS   020000000000          /* flow control */
    142142
     143#define RTEMS_TERMIOS_NUMBER_BAUD_RATES 20
     144
    143145/* c_lflag bits */
    144146#define ISIG    0000001
  • make/custom/psim.cfg

    re0713641 r692b9f7  
    1212# This is the actual bsp directory used during the build process.
    1313RTEMS_BSP_FAMILY=psim
    14 
    15 # This target does NOT support the TCP/IP stack so ignore requests
    16 # to enable it.
    17 HAS_NETWORKING=no
    1814
    1915#  This section makes the target dependent options file.
  • make/target.cfg.in

    re0713641 r692b9f7  
    2020LD = @LD_FOR_TARGET@
    2121SIZE = @SIZE_FOR_TARGET@
     22STRIP = @STRIP_FOR_TARGET@
    2223OBJCOPY = @OBJCOPY_FOR_TARGET@
    2324RANLIB = @RANLIB_FOR_TARGET@
Note: See TracChangeset for help on using the changeset viewer.