initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
config BR2_PACKAGE_PPS_TOOLS
|
||||
bool "pps-tools"
|
||||
help
|
||||
Pulse per second tools. Provides timepps.h and other PPS
|
||||
utilities.
|
||||
|
||||
https://github.com/ago/pps-tools/
|
||||
@@ -0,0 +1,3 @@
|
||||
# Locally calculated
|
||||
sha256 1168f1474235017af413afdb07288303ad7a7b12a0282f3bf9ed0e22fe0d7d2e pps-tools-e2b25049df9a4da28168b7378016f1650d0dfa6b.tar.gz
|
||||
sha256 ab15fd526bd8dd18a9e77ebc139656bf4d33e97fc7238cd11bf60e2b9b8666c6 COPYING
|
||||
@@ -0,0 +1,29 @@
|
||||
################################################################################
|
||||
#
|
||||
# pps-tools
|
||||
#
|
||||
################################################################################
|
||||
|
||||
PPS_TOOLS_VERSION = e2b25049df9a4da28168b7378016f1650d0dfa6b
|
||||
PPS_TOOLS_SITE = $(call github,ago,pps-tools,$(PPS_TOOLS_VERSION))
|
||||
PPS_TOOLS_INSTALL_STAGING = YES
|
||||
PPS_TOOLS_LICENSE = GPL-2.0+
|
||||
PPS_TOOLS_LICENSE_FILES = COPYING
|
||||
|
||||
define PPS_TOOLS_BUILD_CMDS
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) all
|
||||
endef
|
||||
|
||||
define PPS_TOOLS_INSTALL_STAGING_CMDS
|
||||
mkdir -p $(STAGING_DIR)/usr/include/sys $(STAGING_DIR)/usr/bin
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||
DESTDIR=$(STAGING_DIR) -C $(@D) install
|
||||
endef
|
||||
|
||||
define PPS_TOOLS_INSTALL_TARGET_CMDS
|
||||
mkdir -p $(TARGET_DIR)/usr/include/sys $(TARGET_DIR)/usr/bin
|
||||
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
|
||||
DESTDIR=$(TARGET_DIR) -C $(@D) install
|
||||
endef
|
||||
|
||||
$(eval $(generic-package))
|
||||
Reference in New Issue
Block a user