From 2a8769c7db8fa731fb3652a3e9b33161e7aed553 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Tue, 17 Mar 2020 11:33:04 +0100 Subject: personal-pkgs-repo: do not configure opkg I am not using opkg anyway so do not configure it. It complicates usage sometimes. --- personal-pkgs-repo/Makefile | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/personal-pkgs-repo/Makefile b/personal-pkgs-repo/Makefile index 14be668..d7c3b4c 100644 --- a/personal-pkgs-repo/Makefile +++ b/personal-pkgs-repo/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=personal-pkgs-repo -PKG_VERSION:=1.4.11 +PKG_VERSION:=1.5.0 PKG_MAINTAINER:=Karel Kočí PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME) @@ -19,40 +19,11 @@ define Package/$(PKG_NAME) endef define Package/$(PKG_NAME)/install - $(INSTALL_DIR) $(1)/etc/opkg/keys $(INSTALL_DIR) $(1)/etc/updater/keys - $(INSTALL_DATA) ./files/key.pub $(1)/etc/opkg/keys/6b76319bf5a9dc2 $(INSTALL_DATA) ./files/key.pub $(1)/etc/updater/keys/personal-pkgs.pub $(INSTALL_DIR) $(1)/etc/updater/conf.d $(INSTALL_CONF) ./files/updater.lua $(1)/etc/updater/conf.d/personal-pkgs.lua - - $(INSTALL_DIR) $(1)/etc/updater/opkg-ignore - echo ' personal ' >$(1)/etc/updater/opkg-ignore/personal-pkgs -endef - -BOARD:=unknown -ifeq ($(CONFIG_TARGET_PROFILE),"DEVICE_turris-omnia") - BOARD:=omnia -endif -ifeq ($(CONFIG_TARGET_PROFILE),"TURRIS") - BOARD:=turris -endif -ifeq ($(CONFIG_TARGET_PROFILE),"DEVICE_cznic-mox") - BOARD:=mox -endif - -define Package/$(PKG_NAME)/postinst -#!/bin/sh -feedsfile="$$IPKG_INSTROOT/etc/opkg/customfeeds.conf" -sed -i '/^src\/gz personal/d' "$$feedsfile" -echo "src/gz personal https://cynerd.cz/repo/turris/hbd/$(BOARD)" >> "$$feedsfile" -endef - -define Package/$(PKG_NAME)/prerm -#!/bin/sh -feedsfile="$$IPKG_INSTROOT/etc/opkg/customfeeds.conf" -sed -i '/^src\/gz personal/d' "$$feedsfile" endef Build/Compile:=: -- cgit v1.2.3