From patchwork Sat Jun 22 20:16:52 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arne Fitzenreiter X-Patchwork-Id: 2327 Return-Path: Received: from mail01.ipfire.org (mail01.i.ipfire.org [172.28.1.200]) (using TLSv1.2 with cipher ECDHE-ECDSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail01.ipfire.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by web07.i.ipfire.org (Postfix) with ESMTPS id DB596884614 for ; Sat, 22 Jun 2019 11:17:09 +0100 (BST) Received: from mail01.i.ipfire.org (localhost [IPv6:::1]) by mail01.ipfire.org (Postfix) with ESMTP id 45WBLX5sTfz5V8Mj; Sat, 22 Jun 2019 11:17:08 +0100 (BST) Received: from ipfire.localdomain (unknown [88.215.19.234]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (Client did not present a certificate) by mail01.ipfire.org (Postfix) with ESMTPSA id 45WBLN5sJjz5S4VH; Sat, 22 Jun 2019 11:17:00 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904rsa; t=1561198621; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=2Qwa5hPk2+3cG8ue08ceImgpOdKFbkV5g94W59mRUSA=; b=kMsq8K1geX0hm0O28bgY/9pYXa2U2dbuad83/DJ5bC2+/QoPfGxzgltbGDM3p2DZRg733S 4uQnIS7EEZwfbL/grX32GYGw5fzIgTVNE88nEpw3LMdEcRYlIzGy6gRhW1pJT5tmj5lyxO lkb/HGRV0UxIfcknDCSEzEq86tIl1q+OwagXxtU60p3UD2tUUKWlJHxV55slJkhgxQfEbI 1x9ne5YVcDgzNn6kxpVNNcBLTgGVdakdeoTpeCjAS6c6MP/GvCyfia+8yAaAO4eOegohpV JK9e3fCZj8YrymiSbJxnivFpFsvygIdZLmyznHdeOXEB7NYyRAIZWSVd20s7Nw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=201904ed25519; t=1561198621; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc; bh=2Qwa5hPk2+3cG8ue08ceImgpOdKFbkV5g94W59mRUSA=; b=/5wKPUesT7rTbo35RALbjHs3/5RlGkwIp5JQd67+1zobWaIDSh3afmUzvZ4Elda8ZQKhWJ /gYj4X4gjMx/O4AQ== From: Arne Fitzenreiter To: development@lists.ipfire.org Subject: [PATCH] intel-microcode: add new package Date: Sat, 22 Jun 2019 11:16:52 +0100 Message-Id: <1561198612-5058-1-git-send-email-arne_f@ipfire.org> X-Mailer: git-send-email 2.6.3 Authentication-Results: mail01.ipfire.org; auth=pass smtp.auth=arne_f smtp.mailfrom=arne_f@ipfire.org Cc: Arne Fitzenreiter X-BeenThere: development@lists.ipfire.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: IPFire development talk List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: development-bounces@lists.ipfire.org Sender: "Development" Signed-off-by: Arne Fitzenreiter --- intel-microcode/intel-microcode.nm | 40 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 intel-microcode/intel-microcode.nm diff --git a/intel-microcode/intel-microcode.nm b/intel-microcode/intel-microcode.nm new file mode 100644 index 0000000..1232a93 --- /dev/null +++ b/intel-microcode/intel-microcode.nm @@ -0,0 +1,40 @@ +############################################################################### +# IPFire.org - An Open Source Firewall Solution # +# Copyright (C) - IPFire Development Team # +############################################################################### + +name = intel-microcode +version = 20190618 +release = 1 +arch = noarch +thisapp = microcode-%{version} + +maintainer = Arne Fitzenreiter +groups = System/Libraries +url = https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/releases +license = Non-GPL +summary = Microcode update for Intel CPU's. + +description + intel-microcode provides some binaries that + are loaded into the Intel CPU at startup. +end + +source_dl = https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/ + +build + build + : # Nothing to do. + end + + DIR_APP = %{DIR_SRC}/Intel-Linux-Processor-Microcode-Data-Files-%{thisapp} + + install + mkdir -pv %{BUILDROOT}%{prefix}/lib/firmware + cp -prv intel-ucode %{BUILDROOT}%{prefix}/lib/firmware + end +end + +packages + package %{name} +end