mirror of https://github.com/nirenjan/libx52.git
Add SPDX license identifiers in all files
parent
e31f1e442b
commit
7dcd3049ec
|
@ -1,3 +1,9 @@
|
||||||
|
# Top level Automake for x52pro-linux
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
SUBDIRS = lib utils tests
|
SUBDIRS = lib utils tests
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Autoconf settings for x52pro-linux
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
AC_INIT([x52pro-linux], [0.2.0-0], [nirenjan@gmail.com])
|
AC_INIT([x52pro-linux], [0.2.0-0], [nirenjan@gmail.com])
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
|
AM_INIT_AUTOMAKE([-Wall -Werror foreign subdir-objects])
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
* published by the Free Software Foundation, version 2.
|
* published by the Free Software Foundation, version 2.
|
||||||
*
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef CONFIG_USB_DEBUG
|
#ifdef CONFIG_USB_DEBUG
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
* published by the Free Software Foundation, version 2.
|
* published by the Free Software Foundation, version 2.
|
||||||
*
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef CONFIG_USB_DEBUG
|
#ifdef CONFIG_USB_DEBUG
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
* published by the Free Software Foundation, version 2.
|
* published by the Free Software Foundation, version 2.
|
||||||
*
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52JOY_COMMANDS_H
|
#ifndef X52JOY_COMMANDS_H
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
* published by the Free Software Foundation, version 2.
|
* published by the Free Software Foundation, version 2.
|
||||||
*
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52JOY_COMMON_H
|
#ifndef X52JOY_COMMON_H
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
* published by the Free Software Foundation, version 2.
|
* published by the Free Software Foundation, version 2.
|
||||||
*
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef CONFIG_USB_DEBUG
|
#ifdef CONFIG_USB_DEBUG
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
* modify it under the terms of the GNU General Public License as
|
* modify it under the terms of the GNU General Public License as
|
||||||
* published by the Free Software Foundation, version 2.
|
* published by the Free Software Foundation, version 2.
|
||||||
*
|
*
|
||||||
|
* SPDX-License-Identifier: GPL-2.0-only
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52JOY_MAP_H
|
#ifndef X52JOY_MAP_H
|
||||||
|
|
|
@ -1,2 +1,8 @@
|
||||||
|
# Top-level automake for libx52 and associated libraries
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
SUBDIRS = libx52 libx52util libusbx52
|
SUBDIRS = libx52 libx52util libusbx52
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Automake for libusbx52 and associated utilities
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
# libusb stub library for use by test programs
|
# libusb stub library for use by test programs
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -5,10 +5,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -7,10 +7,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Automake for libx52
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
lib_LTLIBRARIES = libx52.la
|
lib_LTLIBRARIES = libx52.la
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef LIBX52_H
|
#ifndef LIBX52_H
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52_COMMANDS_H
|
#ifndef X52_COMMANDS_H
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52JOY_COMMON_H
|
#ifndef X52JOY_COMMON_H
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2017 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Automake for libx52util
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
lib_LTLIBRARIES = libx52util.la
|
lib_LTLIBRARIES = libx52util.la
|
||||||
|
@ -23,3 +29,4 @@ EXTRA_DIST = x52_char_map.cfg \
|
||||||
CLEANFILES = util_char_map.c
|
CLEANFILES = util_char_map.c
|
||||||
util_char_map.c: $(srcdir)/x52_char_map.cfg x52_char_map_gen.py
|
util_char_map.c: $(srcdir)/x52_char_map.cfg x52_char_map_gen.py
|
||||||
$(AM_V_GEN) $(srcdir)/x52_char_map_gen.py $(srcdir)/x52_char_map.cfg $@
|
$(AM_V_GEN) $(srcdir)/x52_char_map_gen.py $(srcdir)/x52_char_map.cfg $@
|
||||||
|
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef LIBX52UTIL_H
|
#ifndef LIBX52UTIL_H
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
# Conversion Map for X52 Pro MFD character map
|
# Conversion Map for X52 Pro MFD character map
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
# The X52 Pro MFD uses a single byte character set and encodes multiple
|
# The X52 Pro MFD uses a single byte character set and encodes multiple
|
||||||
# character ranges in that set. This file defines the mapping from Unicode
|
# character ranges in that set. This file defines the mapping from Unicode
|
||||||
# code points to the vendor character set. This is transformed at compilation
|
# code points to the vendor character set. This is transformed at compilation
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52_CHAR_MAP_H
|
#ifndef X52_CHAR_MAP_H
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# Character map generator
|
# Character map generator
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
"""
|
"""
|
||||||
Generator script to parse character mapping
|
Generator script to parse character mapping
|
||||||
for the X52/X52 Pro MFD
|
for the X52/X52 Pro MFD
|
||||||
|
|
|
@ -6,10 +6,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
# Automake for libx52 tests
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
TEST_EXTENSIONS = .sh
|
TEST_EXTENSIONS = .sh
|
||||||
SH_LOG_COMPILER = $(SHELL)
|
SH_LOG_COMPILER = $(SHELL)
|
||||||
|
|
|
@ -1,5 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# Common infrastructure for the test cases
|
# Common infrastructure for the test cases
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
# Set up exit status codes
|
# Set up exit status codes
|
||||||
EXIT_SUCCESS=0
|
EXIT_SUCCESS=0
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# MFD & LED brightness tests
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
source $(dirname $0)/../common_infra.sh
|
source $(dirname $0)/../common_infra.sh
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# Clock tests
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
source $(dirname $0)/../common_infra.sh
|
source $(dirname $0)/../common_infra.sh
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# Indicator (blink & shift) tests
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
source $(dirname $0)/../common_infra.sh
|
source $(dirname $0)/../common_infra.sh
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# LED tests
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
source $(dirname $0)/../common_infra.sh
|
source $(dirname $0)/../common_infra.sh
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
# MFD tests
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
source $(dirname $0)/../common_infra.sh
|
source $(dirname $0)/../common_infra.sh
|
||||||
|
|
||||||
|
|
|
@ -1,2 +1,8 @@
|
||||||
|
# Top level Automake for utilities
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
SUBDIRS = cli test
|
SUBDIRS = cli test
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Automake for x52cli
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
bin_PROGRAMS = x52cli
|
bin_PROGRAMS = x52cli
|
||||||
|
|
|
@ -3,9 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -1,3 +1,9 @@
|
||||||
|
# Automake for x52test
|
||||||
|
#
|
||||||
|
# Copyright (C) 2012-2018 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
|
#
|
||||||
|
# SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
|
|
||||||
ACLOCAL_AMFLAGS = -I m4
|
ACLOCAL_AMFLAGS = -I m4
|
||||||
|
|
||||||
bin_PROGRAMS = x52test
|
bin_PROGRAMS = x52test
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifndef X52_TEST_COMMON_H
|
#ifndef X52_TEST_COMMON_H
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
|
@ -3,10 +3,7 @@
|
||||||
*
|
*
|
||||||
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
* Copyright (C) 2012-2015 Nirenjan Krishnan (nirenjan@nirenjan.org)
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or
|
* SPDX-License-Identifier: GPL-2.0-only WITH Classpath-exception-2.0
|
||||||
* modify it under the terms of the GNU General Public License as
|
|
||||||
* published by the Free Software Foundation, version 2.
|
|
||||||
*
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
|
|
Loading…
Reference in New Issue