This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Add support for TIRTOS


Hi All,

This is a request to apply the attached patch to newlib. This patch intends to add TIRTOS support (http://processors.wiki.ti.com/index.php/TI-RTOS) in newlib.

I have not included a diff for the generated files. If that is required please let me know and I can share an updated patch.

Thanks,
Ashish

ChangeLog:

From 6d77663313dbe484a0447028bed227b2d881eaac Mon Sep 17 00:00:00 2001
From: Ashish Kapania <akapania@ti.com>
Date: Fri, 28 Mar 2014 18:32:04 -0700
Subject: [PATCH] Add support for TIRTOS

---
ChangeLog                                 |   5 ++
config.sub                                |   4 +-
configure.ac                              |   2 +-
libgloss/ChangeLog                        |   5 ++
libgloss/arm/configure.in                 |   2 +-
newlib/ChangeLog                          |  12 ++++
newlib/configure.host                     |  20 ++++++
newlib/libc/stdio/local.h                 |   2 +-
newlib/libc/sys/configure.in              |   1 +
newlib/libc/sys/tirtos/Makefile.am        |  16 +++++
newlib/libc/sys/tirtos/configure.in       |  14 ++++
newlib/libc/sys/tirtos/include/sys/lock.h | 109 ++++++++++++++++++++++++++++++
newlib/libc/sys/tirtos/lock.c             |  92 +++++++++++++++++++++++++
13 files changed, 279 insertions(+), 5 deletions(-)
create mode 100644 newlib/libc/sys/tirtos/Makefile.am
create mode 100644 newlib/libc/sys/tirtos/configure.in
create mode 100644 newlib/libc/sys/tirtos/include/sys/lock.h
create mode 100644 newlib/libc/sys/tirtos/lock.c
                                                      

Attachment: tirtos_support.patch
Description: tirtos_support.patch


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]