Changeset 0ff37e68 in rtems


Ignore:
Timestamp:
01/07/00 14:47:02 (24 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
c3538f3
Parents:
98c875a1
Message:

Patch rtems-rc-20000104-0.diff from Ralf Corsepius <corsepiu@…>
which is described below:

This one is a (minor) patch in preparation of the upcoming patches. It
actually is an excerpt of the upcoming patches and therefore is
completely untested in this standalone form, but I don't expect it to
break something.

The essential changes in this patch are:

  • An update to rtems-polish.sh (Now can also be run in subdirectories)
  • A bug-fix for the libcpu/powerpc (A directory was missing from SUBDIRS in a Makefile.am)
  • An update to gensh2.cfg.
  • Cleanups/Enhancements? to configuration files

To apply:

cd <srcdir>
patch -p0 < rtems-rc-20000104-0.diff
cvs rm -f c/src/lib/libbsp/Makefile.am.new

Files:
1 deleted
6 edited

Legend:

Unmodified
Added
Removed
  • aclocal/check-bsps.m4

    r98c875a1 r0ff37e68  
    1818        CVS*);;
    1919        pxfl*);;
     20        ac*);;
     21        config*);;
    2022        # Now account for BSPs with build variants
    2123        gen68360)      rtems_bsp="$rtems_bsp gen68360 gen68360_040";;
  • automake/lib.am

    r98c875a1 r0ff37e68  
    1111endef
    1212
    13 TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
    14 
    1513$(PROJECT_RELEASE)/lib:
    1614        @$(mkinstalldirs) $@
    1715
     16TMPINSTALL_FILES = $(PROJECT_RELEASE)/lib
     17
    1818.PRECIOUS: $(LIB)
  • c/src/lib/libbsp/MERGE.PROCEDURE

    r98c875a1 r0ff37e68  
    5959templates for this (My advice: Try to avoid preinstallation and
    6060installation to the temporary installation tree whenever possible; Don't
    61 forget to add all sources which do not get installed installed by automake
     61forget to add all sources which do not get installed by automake
    6262to automake's EXTRA_DIST, e.g. noinst_SCRIPTS, noinst_DATA have to be added
    63 to EXTRA_DIST).
     63to EXTRA_DIST.
    6464
    6565Please let me know if you meet problems and if we/I can fix them. I
  • c/src/lib/libcpu/powerpc/mpc6xx/Makefile.am

    r98c875a1 r0ff37e68  
    55AUTOMAKE_OPTIONS = foreign 1.4
    66
    7 SUBDIRS = exceptions mmu clock wrapup
     7SUBDIRS = exceptions mmu clock timer wrapup
    88
    99include $(top_srcdir)/../../../../../automake/subdirs.am
  • make/custom/gensh2.cfg

    r98c875a1 r0ff37e68  
    8383define make-exe
    8484        $(LINK.c) -Wl,-Map,$(basename $@).map \
    85             $(LDLIBS) -o $(basename $@).exe \
     85            $(LDLIBS) -o $@ \
    8686            $(LINK_OBJS) -lstdc++ $(LINK_LIBS)
    87         $(NM) -n $(basename $@).exe > $(basename $@).num
    88         $(SIZE) $(basename $@).exe
     87        $(NM) -n $@ > $(basename $@).num
     88        $(SIZE) $@
    8989endef
    9090endif
  • tools/update/rtems-polish.sh

    r98c875a1 r0ff37e68  
    1212
    1313progname=`basename $0`
     14rootdir=`dirname $0`
    1415
    15 perltools=tools/update
     16# Get the absolute path to the perltools
     17pwd=`pwd`
     18cd $rootdir
     19perltools=`pwd`
     20cd $pwd
     21
    1622ac_do=""
    1723am_do=""
     
    3238}
    3339
    34 if test ! -f VERSION; then
    35   echo "${progname}:"
    36   echo "        Please change directory to RTEMS's toplevel directory"
    37   exit 1;
    38 fi
     40# Check for auxillary files
     41aux_files="../../VERSION ampolish acpolish cipolish"
     42for i in ${aux_files}; do
     43  if test ! -f ${perltools}/$i; then
     44    echo "${progname}:"
     45    echo "        Missing $perltools/$i"
     46    exit 1;
     47  fi
     48done
    3949
    4050while test $# -gt 0; do
     
    7383    ( cd $dest;
    7484      mv Makefile.in Makefile.in~;
    75       ${pwd}/${perltools}/acpolish <Makefile.in~ >Makefile.in
     85      ${perltools}/acpolish <Makefile.in~ >Makefile.in
    7686      rm Makefile.in~
    7787    )
     
    8898    ( cd $dest;
    8999      mv Makefile.am Makefile.am~;
    90       ${pwd}/${perltools}/ampolish <Makefile.am~ >Makefile.am
     100      ${perltools}/ampolish <Makefile.am~ >Makefile.am
    91101      rm Makefile.am~
    92102    )
     
    102112    ( cd $dest;
    103113      mv configure.in configure.in~;
    104       ${pwd}/${perltools}/cipolish <configure.in~ >configure.in
     114      ${perltools}/cipolish <configure.in~ >configure.in
    105115      rm configure.in~
    106116    )
Note: See TracChangeset for help on using the changeset viewer.