Changeset 692b9f7 in rtems
- Timestamp:
- 10/28/98 19:17:16 (25 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- b4e3b2b
- Parents:
- e0713641
- Files:
-
- 19 edited
Legend:
- Unmodified
- Added
- Removed
-
aclocal.m4
re0713641 r692b9f7 362 362 RTEMS_PATH_TOOL(OBJCOPY_FOR_TARGET,objcopy,no) 363 363 RTEMS_PATH_TOOL(SIZE_FOR_TARGET,size,no) 364 RTEMS_PATH_TOOL(STRIP_FOR_TARGET,strip,no) 364 365 ]) 365 366 -
aclocal/canonicalize-tools.m4
re0713641 r692b9f7 94 94 RTEMS_PATH_TOOL(OBJCOPY_FOR_TARGET,objcopy,no) 95 95 RTEMS_PATH_TOOL(SIZE_FOR_TARGET,size,no) 96 RTEMS_PATH_TOOL(STRIP_FOR_TARGET,strip,no) 96 97 ]) -
c/Makefile.in
re0713641 r692b9f7 44 44 lib/include/libc lib/include/libc/sys \ 45 45 lib/include/motorola lib/include/zilog \ 46 lib/include/libchip \ 46 47 $(LIBNETWORKING) \ 47 48 $(LIBRTEMSCPLUSPLUS) \ -
c/src/exec/libcsupport/include/sys/termios.h
re0713641 r692b9f7 141 141 #define CRTSCTS 020000000000 /* flow control */ 142 142 143 #define RTEMS_TERMIOS_NUMBER_BAUD_RATES 20 144 143 145 /* c_lflag bits */ 144 146 #define ISIG 0000001 -
c/src/lib/Makefile.in
re0713641 r692b9f7 25 25 LIBHWAPI=$(wildcard libhwapi) 26 26 27 SUB_DIRS=start include $(NETWORKING_INCLUDE) libmisc libc libcpu libbsp \ 28 $(LIBNETWORKING) $(LIBHWAPI) $(LIBRTEMSCPLUSPLUS) wrapup 27 SUB_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 141 141 #define CRTSCTS 020000000000 /* flow control */ 142 142 143 #define RTEMS_TERMIOS_NUMBER_BAUD_RATES 20 144 143 145 /* c_lflag bits */ 144 146 #define ISIG 0000001 -
c/src/lib/libchip/serial/mc68681.c
re0713641 r692b9f7 657 657 658 658 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)) { 661 661 Console_Port_Data[minor].bActive = FALSE; 662 662 mc68681_enable_interrupts(minor, MC68681_IMR_ENABLE_ALL_EXCEPT_TX); -
c/src/lib/libchip/serial/ns16550.c
re0713641 r692b9f7 489 489 490 490 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)) { 492 493 if (Console_Port_Tbl[minor].pDeviceFlow != &ns16550_flow_RTSCTS) { 493 494 ns16550_negate_RTS(minor); -
c/src/lib/libchip/serial/z85c30.c
re0713641 r692b9f7 605 605 606 606 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)) { 608 609 if (Console_Port_Tbl[minor].pDeviceFlow != &z85c30_flow_RTSCTS) { 609 610 z85c30_negate_RTS(minor); -
c/src/lib/wrapup/Makefile.in
re0713641 r692b9f7 21 21 $(wildcard $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a) \ 22 22 $(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) \ 23 25 $(PROJECT_RELEASE)/lib/libcsupport$(LIB_VARIANT).a \ 24 26 $(PROJECT_RELEASE)/lib/libmisc$(LIB_VARIANT).a \ -
c/src/libchip/serial/mc68681.c
re0713641 r692b9f7 657 657 658 658 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)) { 661 661 Console_Port_Data[minor].bActive = FALSE; 662 662 mc68681_enable_interrupts(minor, MC68681_IMR_ENABLE_ALL_EXCEPT_TX); -
c/src/libchip/serial/ns16550.c
re0713641 r692b9f7 489 489 490 490 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)) { 492 493 if (Console_Port_Tbl[minor].pDeviceFlow != &ns16550_flow_RTSCTS) { 493 494 ns16550_negate_RTS(minor); -
c/src/libchip/serial/z85c30.c
re0713641 r692b9f7 605 605 606 606 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)) { 608 609 if (Console_Port_Tbl[minor].pDeviceFlow != &z85c30_flow_RTSCTS) { 609 610 z85c30_negate_RTS(minor); -
c/src/wrapup/Makefile.in
re0713641 r692b9f7 21 21 $(wildcard $(PROJECT_RELEASE)/lib/libnetworking$(LIB_VARIANT).a) \ 22 22 $(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) \ 23 25 $(PROJECT_RELEASE)/lib/libcsupport$(LIB_VARIANT).a \ 24 26 $(PROJECT_RELEASE)/lib/libmisc$(LIB_VARIANT).a \ -
configure
re0713641 r692b9f7 2504 2504 fi 2505 2505 2506 2507 echo $ac_n "checking target's strip""... $ac_c" 1>&6 2508 echo "configure:2509: checking target's strip" >&5 2509 if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then 2510 echo $ac_n "(cached) $ac_c" 1>&6 2511 else 2512 : 2513 fi 2514 2515 echo "$ac_t""$ac_cv_path_STRIP_FOR_TARGET" 1>&6 2516 2517 if test -n "$ac_cv_path_STRIP_FOR_TARGET"; then 2518 STRIP_FOR_TARGET=$ac_cv_path_STRIP_FOR_TARGET 2519 else 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 2541 echo "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. 2556 set dummy "$program_prefix"strip; ac_word=$2 2557 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2558 echo "configure:2559: checking for $ac_word" >&5 2559 if eval "test \"`echo '$''{'ac_cv_path_STRIP_FOR_TARGET'+set}'`\" = set"; then 2560 echo $ac_n "(cached) $ac_c" 1>&6 2561 else 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 ;; 2578 esac 2579 fi 2580 STRIP_FOR_TARGET="$ac_cv_path_STRIP_FOR_TARGET" 2581 if test -n "$STRIP_FOR_TARGET"; then 2582 echo "$ac_t""$STRIP_FOR_TARGET" 1>&6 2583 else 2584 echo "$ac_t""no" 1>&6 2585 fi 2586 2587 fi 2588 2506 2589 2507 2590 2508 2591 if test "${target_cpu}" = "i386"; then 2509 2592 echo $ac_n "checking for 16 bit mode assembler support""... $ac_c" 1>&6 2510 echo "configure:25 11: checking for 16 bit mode assembler support" >&52593 echo "configure:2594: checking for 16 bit mode assembler support" >&5 2511 2594 if eval "test \"`echo '$''{'rtems_cv_prog_gas_code16'+set}'`\" = set"; then 2512 2595 echo $ac_n "(cached) $ac_c" 1>&6 … … 2518 2601 lgdt 0 2519 2602 EOF 2520 if { ac_try='$AS_FOR_TARGET -o conftest.o conftest.s'; { (eval echo configure:2 521: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then2603 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 2521 2604 rtems_cv_prog_gas_code16=yes 2522 2605 else … … 2533 2616 set dummy gcc; ac_word=$2 2534 2617 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2535 echo "configure:2 536: checking for $ac_word" >&52618 echo "configure:2619: checking for $ac_word" >&5 2536 2619 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2537 2620 echo $ac_n "(cached) $ac_c" 1>&6 … … 2562 2645 set dummy cc; ac_word=$2 2563 2646 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 2564 echo "configure:2 565: checking for $ac_word" >&52647 echo "configure:2648: checking for $ac_word" >&5 2565 2648 if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then 2566 2649 echo $ac_n "(cached) $ac_c" 1>&6 … … 2610 2693 2611 2694 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6 2612 echo "configure:26 13: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&52695 echo "configure:2696: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5 2613 2696 2614 2697 ac_ext=c … … 2620 2703 2621 2704 cat > conftest.$ac_ext <<EOF 2622 #line 2 623"configure"2705 #line 2706 "configure" 2623 2706 #include "confdefs.h" 2624 2707 main(){return(0);} 2625 2708 EOF 2626 if { (eval echo configure:2 627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2709 if { (eval echo configure:2710: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2627 2710 ac_cv_prog_cc_works=yes 2628 2711 # If we can't run a trivial program, we are probably using a cross compiler. … … 2644 2727 fi 2645 2728 echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 2646 echo "configure:2 647: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&52729 echo "configure:2730: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5 2647 2730 echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6 2648 2731 cross_compiling=$ac_cv_prog_cc_cross 2649 2732 2650 2733 echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6 2651 echo "configure:2 652: checking whether we are using GNU C" >&52734 echo "configure:2735: checking whether we are using GNU C" >&5 2652 2735 if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then 2653 2736 echo $ac_n "(cached) $ac_c" 1>&6 … … 2658 2741 #endif 2659 2742 EOF 2660 if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2 661: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then2743 if { 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 2661 2744 ac_cv_prog_gcc=yes 2662 2745 else … … 2673 2756 CFLAGS= 2674 2757 echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6 2675 echo "configure:2 676: checking whether ${CC-cc} accepts -g" >&52758 echo "configure:2759: checking whether ${CC-cc} accepts -g" >&5 2676 2759 if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then 2677 2760 echo $ac_n "(cached) $ac_c" 1>&6 … … 2702 2785 2703 2786 echo $ac_n "checking for Cygwin32 environment""... $ac_c" 1>&6 2704 echo "configure:27 05: checking for Cygwin32 environment" >&52787 echo "configure:2788: checking for Cygwin32 environment" >&5 2705 2788 if eval "test \"`echo '$''{'rtems_cv_cygwin32'+set}'`\" = set"; then 2706 2789 echo $ac_n "(cached) $ac_c" 1>&6 2707 2790 else 2708 2791 cat > conftest.$ac_ext <<EOF 2709 #line 27 10"configure"2792 #line 2793 "configure" 2710 2793 #include "confdefs.h" 2711 2794 … … 2714 2797 ; return 0; } 2715 2798 EOF 2716 if { (eval echo configure:2 717: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2799 if { (eval echo configure:2800: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2717 2800 rm -rf conftest* 2718 2801 rtems_cv_cygwin32=yes … … 2732 2815 2733 2816 echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 2734 echo "configure:2 735: checking for executable suffix" >&52817 echo "configure:2818: checking for executable suffix" >&5 2735 2818 if eval "test \"`echo '$''{'rtems_cv_exeext'+set}'`\" = set"; then 2736 2819 echo $ac_n "(cached) $ac_c" 1>&6 … … 2773 2856 do 2774 2857 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 2775 echo "configure:2 776: checking for $ac_func" >&52858 echo "configure:2859: checking for $ac_func" >&5 2776 2859 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 2777 2860 echo $ac_n "(cached) $ac_c" 1>&6 2778 2861 else 2779 2862 cat > conftest.$ac_ext <<EOF 2780 #line 2 781"configure"2863 #line 2864 "configure" 2781 2864 #include "confdefs.h" 2782 2865 /* System header to define __stub macros and hopefully few prototypes, … … 2801 2884 ; return 0; } 2802 2885 EOF 2803 if { (eval echo configure:28 04: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then2886 if { (eval echo configure:2887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 2804 2887 rm -rf conftest* 2805 2888 eval "ac_cv_func_$ac_func=yes" … … 2830 2913 2831 2914 echo $ac_n "checking whether $RTEMS_HOST supports System V semaphores""... $ac_c" 1>&6 2832 echo "configure:2 833: checking whether $RTEMS_HOST supports System V semaphores" >&52915 echo "configure:2916: checking whether $RTEMS_HOST supports System V semaphores" >&5 2833 2916 if eval "test \"`echo '$''{'rtems_cv_sysv_sem'+set}'`\" = set"; then 2834 2917 echo $ac_n "(cached) $ac_c" 1>&6 … … 2839 2922 else 2840 2923 cat > conftest.$ac_ext <<EOF 2841 #line 2 842"configure"2924 #line 2925 "configure" 2842 2925 #include "confdefs.h" 2843 2926 … … 2865 2948 2866 2949 EOF 2867 if { (eval echo configure:2 868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null2950 if { (eval echo configure:2951: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 2868 2951 then 2869 2952 rtems_cv_sysv_sem="yes" … … 2888 2971 2889 2972 echo $ac_n "checking whether $RTEMS_HOST supports System V shared memory""... $ac_c" 1>&6 2890 echo "configure:2 891: checking whether $RTEMS_HOST supports System V shared memory" >&52973 echo "configure:2974: checking whether $RTEMS_HOST supports System V shared memory" >&5 2891 2974 if eval "test \"`echo '$''{'rtems_cv_sysv_shm'+set}'`\" = set"; then 2892 2975 echo $ac_n "(cached) $ac_c" 1>&6 … … 2897 2980 else 2898 2981 cat > conftest.$ac_ext <<EOF 2899 #line 29 00"configure"2982 #line 2983 "configure" 2900 2983 #include "confdefs.h" 2901 2984 … … 2913 2996 2914 2997 EOF 2915 if { (eval echo configure:29 16: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null2998 if { (eval echo configure:2999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 2916 2999 then 2917 3000 rtems_cv_sysv_shm="yes" … … 2936 3019 2937 3020 echo $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" >&53021 echo "configure:3022: checking whether $RTEMS_HOST supports System V messages" >&5 2939 3022 if eval "test \"`echo '$''{'rtems_cv_sysv_msg'+set}'`\" = set"; then 2940 3023 echo $ac_n "(cached) $ac_c" 1>&6 … … 2945 3028 else 2946 3029 cat > conftest.$ac_ext <<EOF 2947 #line 2948"configure"3030 #line 3031 "configure" 2948 3031 #include "confdefs.h" 2949 3032 … … 2961 3044 2962 3045 EOF 2963 if { (eval echo configure: 2964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null3046 if { (eval echo configure:3047: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 2964 3047 then 2965 3048 rtems_cv_sysv_msg="yes" … … 2986 3069 2987 3070 echo $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" >&53071 echo "configure:3072: checking for Makefile.in in c/src/exec/score/tools/$target_cpu" >&5 2989 3072 if test -d $srcdir/c/src/exec/score/tools/$target_cpu; then 2990 3073 rtems_av_save_dir=`pwd`; … … 3001 3084 3002 3085 echo $ac_n "checking for Makefile.in in c/src/exec/rtems""... $ac_c" 1>&6 3003 echo "configure:30 04: checking for Makefile.in in c/src/exec/rtems" >&53086 echo "configure:3087: checking for Makefile.in in c/src/exec/rtems" >&5 3004 3087 if test -d $srcdir/c/src/exec/rtems; then 3005 3088 rtems_av_save_dir=`pwd`; … … 3016 3099 3017 3100 echo $ac_n "checking for Makefile.in in c/src/exec/sapi""... $ac_c" 1>&6 3018 echo "configure:3 019: checking for Makefile.in in c/src/exec/sapi" >&53101 echo "configure:3102: checking for Makefile.in in c/src/exec/sapi" >&5 3019 3102 if test -d $srcdir/c/src/exec/sapi; then 3020 3103 rtems_av_save_dir=`pwd`; … … 3033 3116 3034 3117 echo $ac_n "checking for Makefile.in in c/src/exec/posix""... $ac_c" 1>&6 3035 echo "configure:3 036: checking for Makefile.in in c/src/exec/posix" >&53118 echo "configure:3119: checking for Makefile.in in c/src/exec/posix" >&5 3036 3119 if test -d $srcdir/c/src/exec/posix; then 3037 3120 rtems_av_save_dir=`pwd`; … … 3055 3138 if test -z "$rtems_bsp"; then 3056 3139 echo $ac_n "checking for bsps""... $ac_c" 1>&6 3057 echo "configure:3 058: checking for bsps" >&53140 echo "configure:3141: checking for bsps" >&5 3058 3141 files=`ls $srcdir/c/src/lib/libbsp/$target_cpu` 3059 3142 for file in $files; do … … 3120 3203 3121 3204 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir""... $ac_c" 1>&6 3122 echo "configure:3 123: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&53205 echo "configure:3206: checking for Makefile.in in c/src/lib/libbsp/$bspcpudir$bspdir" >&5 3123 3206 if test -d $srcdir/c/src/lib/libbsp/$bspcpudir$bspdir; then 3124 3207 rtems_av_save_dir=`pwd`; … … 3135 3218 3136 3219 echo $ac_n "checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared""... $ac_c" 1>&6 3137 echo "configure:3 138: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&53220 echo "configure:3221: checking for Makefile.in in c/src/lib/libbsp/${bspcpudir}shared" >&5 3138 3221 if test -d $srcdir/c/src/lib/libbsp/${bspcpudir}shared; then 3139 3222 rtems_av_save_dir=`pwd`; … … 3158 3241 3159 3242 echo $ac_n "checking for Makefile.in in c/src/lib/libcpu/$target_cpu""... $ac_c" 1>&6 3160 echo "configure:3 161: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&53243 echo "configure:3244: checking for Makefile.in in c/src/lib/libcpu/$target_cpu" >&5 3161 3244 if test -d $srcdir/c/src/lib/libcpu/$target_cpu; then 3162 3245 rtems_av_save_dir=`pwd`; … … 3175 3258 3176 3259 echo $ac_n "checking for Makefile.in in c/src/lib/start/$target_cpu""... $ac_c" 1>&6 3177 echo "configure:3 178: checking for Makefile.in in c/src/lib/start/$target_cpu" >&53260 echo "configure:3261: checking for Makefile.in in c/src/lib/start/$target_cpu" >&5 3178 3261 if test -d $srcdir/c/src/lib/start/$target_cpu; then 3179 3262 rtems_av_save_dir=`pwd`; … … 3207 3290 # If the TCP/IP stack is enabled, then find all TCP/IP Makefiles 3208 3291 echo $ac_n "checking if networking is enabled? ""... $ac_c" 1>&6 3209 echo "configure:32 10: checking if networking is enabled? " >&53292 echo "configure:3293: checking if networking is enabled? " >&5 3210 3293 echo "$ac_t""$RTEMS_HAS_NETWORKING" 1>&6 3211 3294 if test "$RTEMS_HAS_NETWORKING" = "yes"; then 3212 3295 3213 3296 echo $ac_n "checking for Makefile.in in c/src/lib/libnetworking""... $ac_c" 1>&6 3214 echo "configure:32 15: checking for Makefile.in in c/src/lib/libnetworking" >&53297 echo "configure:3298: checking for Makefile.in in c/src/lib/libnetworking" >&5 3215 3298 if test -d $srcdir/c/src/lib/libnetworking; then 3216 3299 rtems_av_save_dir=`pwd`; … … 3234 3317 # If the tests are enabled, then find all the test suite Makefiles 3235 3318 echo $ac_n "checking if the test suites are enabled? ""... $ac_c" 1>&6 3236 echo "configure:3 237: checking if the test suites are enabled? " >&53319 echo "configure:3320: checking if the test suites are enabled? " >&5 3237 3320 tests_enabled=yes 3238 3321 # Check whether --enable-tests or --disable-tests was given. … … 3253 3336 3254 3337 echo $ac_n "checking for Makefile.in in c/src/tests/tools/$target_cpu""... $ac_c" 1>&6 3255 echo "configure:3 256: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&53338 echo "configure:3339: checking for Makefile.in in c/src/tests/tools/$target_cpu" >&5 3256 3339 if test -d $srcdir/c/src/tests/tools/$target_cpu; then 3257 3340 rtems_av_save_dir=`pwd`; … … 3270 3353 3271 3354 echo $ac_n "checking for Makefile.in in c/src/tests/libtests""... $ac_c" 1>&6 3272 echo "configure:3 273: checking for Makefile.in in c/src/tests/libtests" >&53355 echo "configure:3356: checking for Makefile.in in c/src/tests/libtests" >&5 3273 3356 if test -d $srcdir/c/src/tests/libtests; then 3274 3357 rtems_av_save_dir=`pwd`; … … 3285 3368 3286 3369 echo $ac_n "checking for Makefile.in in c/src/tests/sptests""... $ac_c" 1>&6 3287 echo "configure:3 288: checking for Makefile.in in c/src/tests/sptests" >&53370 echo "configure:3371: checking for Makefile.in in c/src/tests/sptests" >&5 3288 3371 if test -d $srcdir/c/src/tests/sptests; then 3289 3372 rtems_av_save_dir=`pwd`; … … 3300 3383 3301 3384 echo $ac_n "checking for Makefile.in in c/src/tests/tmtests""... $ac_c" 1>&6 3302 echo "configure:33 03: checking for Makefile.in in c/src/tests/tmtests" >&53385 echo "configure:3386: checking for Makefile.in in c/src/tests/tmtests" >&5 3303 3386 if test -d $srcdir/c/src/tests/tmtests; then 3304 3387 rtems_av_save_dir=`pwd`; … … 3315 3398 3316 3399 echo $ac_n "checking for Makefile.in in c/src/tests/mptests""... $ac_c" 1>&6 3317 echo "configure:3 318: checking for Makefile.in in c/src/tests/mptests" >&53400 echo "configure:3401: checking for Makefile.in in c/src/tests/mptests" >&5 3318 3401 if test -d $srcdir/c/src/tests/mptests; then 3319 3402 rtems_av_save_dir=`pwd`; … … 3331 3414 3332 3415 echo $ac_n "checking for Makefile.in in c/src/tests/psxtests""... $ac_c" 1>&6 3333 echo "configure:3 334: checking for Makefile.in in c/src/tests/psxtests" >&53416 echo "configure:3417: checking for Makefile.in in c/src/tests/psxtests" >&5 3334 3417 if test -d $srcdir/c/src/tests/psxtests; then 3335 3418 rtems_av_save_dir=`pwd`; … … 3349 3432 # If the HWAPI is enabled, the find the HWAPI Makefiles 3350 3433 echo $ac_n "checking if the HWAPI is enabled? ""... $ac_c" 1>&6 3351 echo "configure:3 352: checking if the HWAPI is enabled? " >&53434 echo "configure:3435: checking if the HWAPI is enabled? " >&5 3352 3435 # Check whether --enable-hwapi or --disable-hwapi was given. 3353 3436 if test "${enable_hwapi+set}" = set; then … … 3360 3443 3361 3444 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/analog""... $ac_c" 1>&6 3362 echo "configure:3 363: checking for Makefile.in in c/src/lib/libhwapi/analog" >&53445 echo "configure:3446: checking for Makefile.in in c/src/lib/libhwapi/analog" >&5 3363 3446 if test -d $srcdir/c/src/lib/libhwapi/analog; then 3364 3447 rtems_av_save_dir=`pwd`; … … 3375 3458 3376 3459 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/discrete""... $ac_c" 1>&6 3377 echo "configure:3 378: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&53460 echo "configure:3461: checking for Makefile.in in c/src/lib/libhwapi/discrete" >&5 3378 3461 if test -d $srcdir/c/src/lib/libhwapi/discrete; then 3379 3462 rtems_av_save_dir=`pwd`; … … 3390 3473 3391 3474 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/drivers""... $ac_c" 1>&6 3392 echo "configure:3 393: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&53475 echo "configure:3476: checking for Makefile.in in c/src/lib/libhwapi/drivers" >&5 3393 3476 if test -d $srcdir/c/src/lib/libhwapi/drivers; then 3394 3477 rtems_av_save_dir=`pwd`; … … 3405 3488 3406 3489 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory""... $ac_c" 1>&6 3407 echo "configure:34 08: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&53490 echo "configure:3491: checking for Makefile.in in c/src/lib/libhwapi/non_volatile_memory" >&5 3408 3491 if test -d $srcdir/c/src/lib/libhwapi/non_volatile_memory; then 3409 3492 rtems_av_save_dir=`pwd`; … … 3420 3503 3421 3504 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/serial""... $ac_c" 1>&6 3422 echo "configure:3 423: checking for Makefile.in in c/src/lib/libhwapi/serial" >&53505 echo "configure:3506: checking for Makefile.in in c/src/lib/libhwapi/serial" >&5 3423 3506 if test -d $srcdir/c/src/lib/libhwapi/serial; then 3424 3507 rtems_av_save_dir=`pwd`; … … 3435 3518 3436 3519 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/support""... $ac_c" 1>&6 3437 echo "configure:3 438: checking for Makefile.in in c/src/lib/libhwapi/support" >&53520 echo "configure:3521: checking for Makefile.in in c/src/lib/libhwapi/support" >&5 3438 3521 if test -d $srcdir/c/src/lib/libhwapi/support; then 3439 3522 rtems_av_save_dir=`pwd`; … … 3450 3533 3451 3534 echo $ac_n "checking for Makefile.in in c/src/lib/libhwapi/wrapup""... $ac_c" 1>&6 3452 echo "configure:3 453: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&53535 echo "configure:3536: checking for Makefile.in in c/src/lib/libhwapi/wrapup" >&5 3453 3536 if test -d $srcdir/c/src/lib/libhwapi/wrapup; then 3454 3537 rtems_av_save_dir=`pwd`; … … 3500 3583 3501 3584 echo $ac_n "checking for Makefile.in in c/build-tools""... $ac_c" 1>&6 3502 echo "configure:35 03: checking for Makefile.in in c/build-tools" >&53585 echo "configure:3586: checking for Makefile.in in c/build-tools" >&5 3503 3586 if test -d $srcdir/c/build-tools; then 3504 3587 rtems_av_save_dir=`pwd`; … … 3515 3598 3516 3599 echo $ac_n "checking for Makefile.in in make""... $ac_c" 1>&6 3517 echo "configure:3 518: checking for Makefile.in in make" >&53600 echo "configure:3601: checking for Makefile.in in make" >&5 3518 3601 if test -d $srcdir/make; then 3519 3602 rtems_av_save_dir=`pwd`; … … 3529 3612 3530 3613 3614 echo $ac_n "checking for Makefile.in in c/src/lib/libchip""... $ac_c" 1>&6 3615 echo "configure:3616: checking for Makefile.in in c/src/lib/libchip" >&5 3616 if 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 3623 else 3624 echo "$ac_t""no" 1>&6 3625 fi 3626 3627 3628 3531 3629 echo $ac_n "checking for Makefile.in in c/src/lib/libmisc""... $ac_c" 1>&6 3532 echo "configure:3 533: checking for Makefile.in in c/src/lib/libmisc" >&53630 echo "configure:3631: checking for Makefile.in in c/src/lib/libmisc" >&5 3533 3631 if test -d $srcdir/c/src/lib/libmisc; then 3534 3632 rtems_av_save_dir=`pwd`; … … 3545 3643 3546 3644 echo $ac_n "checking for Makefile.in in c/src/tests/samples""... $ac_c" 1>&6 3547 echo "configure:3 548: checking for Makefile.in in c/src/tests/samples" >&53645 echo "configure:3646: checking for Makefile.in in c/src/tests/samples" >&5 3548 3646 if test -d $srcdir/c/src/tests/samples; then 3549 3647 rtems_av_save_dir=`pwd`; … … 3768 3866 s%@OBJCOPY_FOR_TARGET@%$OBJCOPY_FOR_TARGET%g 3769 3867 s%@SIZE_FOR_TARGET@%$SIZE_FOR_TARGET%g 3868 s%@STRIP_FOR_TARGET@%$STRIP_FOR_TARGET%g 3770 3869 s%@CC@%$CC%g 3771 3870 s%@EXEEXT@%$EXEEXT%g -
configure.in
re0713641 r692b9f7 482 482 RTEMS_CHECK_MAKEFILE(c/build-tools) 483 483 RTEMS_CHECK_MAKEFILE(make) 484 RTEMS_CHECK_MAKEFILE(c/src/lib/libchip) 484 485 RTEMS_CHECK_MAKEFILE(c/src/lib/libmisc) 485 486 RTEMS_CHECK_MAKEFILE(c/src/tests/samples) -
cpukit/libcsupport/include/sys/termios.h
re0713641 r692b9f7 141 141 #define CRTSCTS 020000000000 /* flow control */ 142 142 143 #define RTEMS_TERMIOS_NUMBER_BAUD_RATES 20 144 143 145 /* c_lflag bits */ 144 146 #define ISIG 0000001 -
make/custom/psim.cfg
re0713641 r692b9f7 12 12 # This is the actual bsp directory used during the build process. 13 13 RTEMS_BSP_FAMILY=psim 14 15 # This target does NOT support the TCP/IP stack so ignore requests16 # to enable it.17 HAS_NETWORKING=no18 14 19 15 # This section makes the target dependent options file. -
make/target.cfg.in
re0713641 r692b9f7 20 20 LD = @LD_FOR_TARGET@ 21 21 SIZE = @SIZE_FOR_TARGET@ 22 STRIP = @STRIP_FOR_TARGET@ 22 23 OBJCOPY = @OBJCOPY_FOR_TARGET@ 23 24 RANLIB = @RANLIB_FOR_TARGET@
Note: See TracChangeset
for help on using the changeset viewer.