72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			72 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
#
 | 
						|
# Copyright (C) 2019-2020 OpenWrt.org
 | 
						|
#
 | 
						|
# This is free software, licensed under the GNU General Public License v2.
 | 
						|
# See /LICENSE for more information.
 | 
						|
#
 | 
						|
 | 
						|
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=bcm27xx-userland
 | 
						|
PKG_VERSION:=f4bccc38f9d0a740aeb7818d33ca1fd551e325de
 | 
						|
PKG_RELEASE:=1
 | 
						|
 | 
						|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
 | 
						|
PKG_SOURCE_URL:=https://codeload.github.com/raspberrypi/userland/tar.gz/$(PKG_VERSION)?
 | 
						|
PKG_HASH:=3a4ea8788809bf889da9fe61759e4f8daafab3444264c011db9c6b25237fd044
 | 
						|
 | 
						|
PKG_FLAGS:=nonshared
 | 
						|
 | 
						|
PKG_MAINTAINER:=Álvaro Fernández Rojas <noltari@gmail.com>
 | 
						|
 | 
						|
CMAKE_INSTALL:=1
 | 
						|
CMAKE_OPTIONS+=-DVMCS_INSTALL_PREFIX=/usr
 | 
						|
 | 
						|
ifeq ($(ARCH),aarch64)
 | 
						|
  CMAKE_OPTIONS+=-DARM64=ON
 | 
						|
else
 | 
						|
  CMAKE_OPTIONS+=-DARM64=OFF
 | 
						|
endif
 | 
						|
 | 
						|
include $(INCLUDE_DIR)/package.mk
 | 
						|
include $(INCLUDE_DIR)/cmake.mk
 | 
						|
 | 
						|
TAR_OPTIONS:=--strip-components 1 $(TAR_OPTIONS)
 | 
						|
TAR_CMD=$(HOST_TAR) -C $(1) $(TAR_OPTIONS)
 | 
						|
 | 
						|
define Package/bcm27xx-userland
 | 
						|
  SECTION:=utils
 | 
						|
  CATEGORY:=Utilities
 | 
						|
  DEPENDS:=@TARGET_bcm27xx
 | 
						|
  TITLE:=BCM27xx userland tools
 | 
						|
  DEFAULT:=y if TARGET_bcm27xx
 | 
						|
endef
 | 
						|
 | 
						|
define Package/bcm27xx-userland/description
 | 
						|
  BCM27xx userland tools including vcgencmd and tvservice.
 | 
						|
endef
 | 
						|
 | 
						|
define Package/bcm27xx-userland/install
 | 
						|
	$(INSTALL_DIR) $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtmerge $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtparam $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/dtoverlay $(1)/usr/bin
 | 
						|
ifneq ($(ARCH),aarch64)
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/raspistill $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/raspivid $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/raspividyuv $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/raspiyuv $(1)/usr/bin
 | 
						|
endif
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/tvservice $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vcgencmd $(1)/usr/bin
 | 
						|
	$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/vcmailbox $(1)/usr/bin
 | 
						|
 | 
						|
	$(INSTALL_DIR) $(1)/usr/include
 | 
						|
	$(CP) $(PKG_INSTALL_DIR)/usr/include/ $(1)/usr/
 | 
						|
 | 
						|
	$(INSTALL_DIR) $(1)/usr/lib
 | 
						|
	$(CP) $(PKG_INSTALL_DIR)/usr/lib/ $(1)/usr/
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackage,bcm27xx-userland))
 |