[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_LINUX_SYSCALL_SUPPORT
bool "linux-syscall-support (lss)"
help
This project provides a header file that can be included into
your application whenever you need to make direct system
calls.
https://chromium.googlesource.com/linux-syscall-support/

View File

@ -0,0 +1,3 @@
# Locally calculated
sha256 2a12703ce59773ec714b603e46c733b03f3fbf9b4763195fae40d0042e5da3f6 linux-syscall-support-e1e7b0ad8ee99a875b272c8e33e308472e897660-br1.tar.gz
sha256 c180f12840c00224cceed7139192018d2c7e6061db4ce4310b8626f7ad10bf26 LICENSE

View File

@ -0,0 +1,29 @@
################################################################################
#
# linux-syscall-support
#
################################################################################
# Use the same version that the one used by Google-breakpad (see DEPS file)
LINUX_SYSCALL_SUPPORT_VERSION = e1e7b0ad8ee99a875b272c8e33e308472e897660
LINUX_SYSCALL_SUPPORT_SITE = https://chromium.googlesource.com/linux-syscall-support
LINUX_SYSCALL_SUPPORT_SITE_METHOD = git
LINUX_SYSCALL_SUPPORT_LICENSE = BSD-3-Clause
LINUX_SYSCALL_SUPPORT_LICENSE_FILES = LICENSE
# Provide only one header file.
LINUX_SYSCALL_SUPPORT_INSTALL_TARGET = NO
LINUX_SYSCALL_SUPPORT_INSTALL_STAGING = YES
define LINUX_SYSCALL_SUPPORT_INSTALL_STAGING_CMDS
$(INSTALL) -D -m 0644 $(@D)/linux_syscall_support.h \
$(STAGING_DIR)/usr/include/linux_syscall_support.h
endef
define HOST_LINUX_SYSCALL_SUPPORT_INSTALL_CMDS
$(INSTALL) -D -m 0644 $(@D)/linux_syscall_support.h \
$(HOST_DIR)/include/linux_syscall_support.h
endef
$(eval $(generic-package))
$(eval $(host-generic-package))