initial buildroot for linux 5.15
This commit is contained in:
@@ -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/
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 498efb6915ac6e65c82c712fadd3c30f9472764114c835849e02f2c092bacd2d linux-syscall-support-3f6478ac95edf86cd3da300c2c0d34a438f5dbeb-br1.tar.gz
|
||||
sha256 4c1fc9acc9f3867e5c81b5d5f57c52fb9a932662bd4e2e5e43b3fe95390035f5 linux_syscall_support.h
|
||||
@@ -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 = 3f6478ac95edf86cd3da300c2c0d34a438f5dbeb
|
||||
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 = linux_syscall_support.h
|
||||
|
||||
# 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