generated from gaoyang3513/SDK_RK3288
[Mod] First commit
This commit is contained in:
8
package/linux-syscall-support/Config.in
Normal file
8
package/linux-syscall-support/Config.in
Normal 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/
|
||||
3
package/linux-syscall-support/linux-syscall-support.hash
Normal file
3
package/linux-syscall-support/linux-syscall-support.hash
Normal file
@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 2a12703ce59773ec714b603e46c733b03f3fbf9b4763195fae40d0042e5da3f6 linux-syscall-support-e1e7b0ad8ee99a875b272c8e33e308472e897660-br1.tar.gz
|
||||
sha256 c180f12840c00224cceed7139192018d2c7e6061db4ce4310b8626f7ad10bf26 LICENSE
|
||||
29
package/linux-syscall-support/linux-syscall-support.mk
Normal file
29
package/linux-syscall-support/linux-syscall-support.mk
Normal 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))
|
||||
Reference in New Issue
Block a user