Skip to content

Commit feb1768

Browse files
author
Alex Belits
committed
Initial commit
0 parents  commit feb1768

20 files changed

+17846
-0
lines changed

COPYING

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
Copyright (c) 2019-2020, Marvell Semiconductor, Inc
2+
3+
Redistribution and use in source and binary forms, with or without
4+
modification, are permitted provided that the following conditions are
5+
met:
6+
7+
1. Redistributions of source code must retain the above copyright
8+
notice, this list of conditions and the following disclaimer.
9+
10+
2. Redistributions in binary form must reproduce the above copyright
11+
notice, this list of conditions and the following disclaimer in the
12+
documentation and/or other materials provided with the distribution.
13+
14+
3. Neither the name of the copyright holder nor the names of its
15+
contributors may be used to endorse or promote products derived from
16+
this software without specific prior written permission.
17+
18+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19+
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20+
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21+
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22+
HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24+
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26+
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28+
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2020-03-04 Alex Belits <abelits@marvell.com>
2+
* Initial release

Makefile.am

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
ACLOCAL_AMFLAGS = -I m4
2+
lib_LTLIBRARIES = libtmc.la
3+
libtmc_la_SOURCES = isol.c isol-server.c
4+
libtmc_la_CFLAGS = -I$(abs_top_srcdir)/include -D_GNU_SOURCE
5+
6+
bin_PROGRAMS = isol-interrupt-mon isol-test app-ctl
7+
8+
isol_interrupt_mon_SOURCES = isol-interrupt-mon.c
9+
10+
isol_test_SOURCES = isol-test.c
11+
isol_test_CFLAGS = -I$(abs_top_srcdir)/include -D_GNU_SOURCE
12+
isol_test_LDADD = libtmc.la
13+
14+
app_ctl_SOURCES = app-ctl.c
15+
app_ctl_CFLAGS = -I$(abs_top_srcdir)/include -D_GNU_SOURCE
16+
17+
SUBDIRS = include

0 commit comments

Comments
 (0)