Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
From 94c66ade15d7fc468b52c72dfe76a8c10b1910a7 Mon Sep 17 00:00:00 2001
From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Date: Fri, 12 Feb 2016 10:13:45 +0100
Subject: [PATCH] testlibraw: build the CLOCK_MONOTONIC_RAW test conditionally
CLOCK_MONOTONIC_RAW is a somewhat recent addition, and some older
toolchains/kernels may not have the support for it. Therefore, we
build the part of the test that uses CLOCK_MONOTONIC_RAW only when
this definition is available.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
tools/testlibraw.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/tools/testlibraw.c b/tools/testlibraw.c
index d8a0702..ae37157 100644
--- a/tools/testlibraw.c
+++ b/tools/testlibraw.c
@@ -211,6 +211,7 @@ read_cycle_timer(raw1394handle_t handle)
printf(" local time from CLOCK_MONOTONIC: %lld us\n",
(unsigned long long)local_time);
+#if defined(CLOCK_MONOTONIC_RAW)
retval = raw1394_read_cycle_timer_and_clock(handle, &ct, &local_time,
CLOCK_MONOTONIC_RAW);
if (retval < 0) {
@@ -221,6 +222,7 @@ read_cycle_timer(raw1394handle_t handle)
ct >> 25, (ct >> 12) & 0x1fff, ct & 0xfff);
printf(" local time from CLOCK_MONOTONIC_RAW: %lld us\n",
(unsigned long long)local_time);
+#endif
}
int test_card(int card)
--
2.6.4

View File

@@ -0,0 +1,7 @@
config BR2_PACKAGE_LIBRAW1394
bool "libraw1394"
help
libraw1394 provides direct access to the IEEE 1394 bus through
the Linux 1394 subsystem's raw1394 user space interface.
http://sourceforge.net/projects/libraw1394/

View File

@@ -0,0 +1,4 @@
# From https://www.kernel.org/pub/linux/libs/ieee1394/sha256sums.asc
sha256 1bab9780189f9d1eb4e973df12679c04f979c21e024240fc98e536ff5b680ee9 libraw1394-2.1.1.tar.xz
# Locally computed
sha256 39369c65fbed7fccc2e6d8e645f258f101c414107d67238f10996e6c2009f20d fix-types.patch

View File

@@ -0,0 +1,15 @@
################################################################################
#
# libraw1394
#
################################################################################
LIBRAW1394_VERSION = 2.1.1
LIBRAW1394_SOURCE = libraw1394-$(LIBRAW1394_VERSION).tar.xz
LIBRAW1394_SITE = $(BR2_KERNEL_MIRROR)/linux/libs/ieee1394
LIBRAW1394_PATCH = http://git.alpinelinux.org/cgit/aports/plain/main/libraw1394/fix-types.patch
LIBRAW1394_INSTALL_STAGING = YES
LIBRAW1394_LICENSE = LGPLv2.1+
LIBRAW1394_LICENSE_FILES = COPYING.LIB
$(eval $(autotools-package))