Changeset 6279149 in rtems for c/src/lib/libbsp/sh


Ignore:
Timestamp:
10/08/14 21:04:56 (9 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.11, 5, master
Children:
6adacd89
Parents:
8536b67
git-author:
Joel Sherrill <joel.sherrill@…> (10/08/14 21:04:56)
git-committer:
Joel Sherrill <joel.sherrill@…> (10/10/14 15:17:09)
Message:

Add console-polled.h and update all BSPs that should use it.

The file console-polled.h provides the prototypes for the three
required methods when implementing a single port polled console
driver. This paradigm is common on simulators and simple hardware.

+ Updated the BSPs Makefile.am to make console-polled.h available.
+ Regenerated the BSPs preinstall.sm.
+ Updated console support files to include <bsp/console-polled.h>.
+ Updated console support files to make printk() support method static.

Location:
c/src/lib/libbsp/sh/shsim
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • c/src/lib/libbsp/sh/shsim/Makefile.am

    r8536b67 r6279149  
    1313nodist_include_HEADERS = include/bspopts.h
    1414nodist_include_bsp_HEADERS = ../../shared/include/bootcard.h
     15nodist_include_bsp_HEADERS += ../../shared/include/console-polled.h
    1516DISTCLEANFILES = include/bspopts.h
    1617
  • c/src/lib/libbsp/sh/shsim/console/console-io.c

    r8536b67 r6279149  
    22 *  This file contains the hardware specific portions of the TTY driver
    33 *  for the simulators stdin/out.
    4  *
    5  *  Logic based on newlib-1.8.2/newlib/libc/sys/sh/syscalls.c
    6  *
     4 */
     5
     6/*
    77 *  COPYRIGHT (c) 1989-2011.
    88 *  On-Line Applications Research Corporation (OAR).
     
    1414
    1515#include <bsp.h>
     16#include <bsp/console-polled.h>
    1617#include <rtems/libio.h>
    1718#include <stdlib.h>
  • c/src/lib/libbsp/sh/shsim/preinstall.am

    r8536b67 r6279149  
    5858PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/bootcard.h
    5959
     60$(PROJECT_INCLUDE)/bsp/console-polled.h: ../../shared/include/console-polled.h $(PROJECT_INCLUDE)/bsp/$(dirstamp)
     61        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/bsp/console-polled.h
     62PREINSTALL_FILES += $(PROJECT_INCLUDE)/bsp/console-polled.h
     63
    6064$(PROJECT_INCLUDE)/coverhd.h: ../../shared/include/coverhd.h $(PROJECT_INCLUDE)/$(dirstamp)
    6165        $(INSTALL_DATA) $< $(PROJECT_INCLUDE)/coverhd.h
Note: See TracChangeset for help on using the changeset viewer.