From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.haj.ipfire.org (localhost [IPv6:::1]) by mail02.haj.ipfire.org (Postfix) with ESMTP id 4gV64J2Y0Kz2xSM for ; Tue, 02 Jun 2026 10:09:04 +0000 (UTC) Received: from mail01.ipfire.org (mail01.haj.ipfire.org [172.28.1.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature ECDSA (secp384r1 raw public key) server-digest SHA384 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mail01.haj.ipfire.org", Issuer "R12" (not verified)) by mail02.haj.ipfire.org (Postfix) with ESMTPS id 4gV64J2Dn5z2xHk for ; Tue, 02 Jun 2026 10:09:04 +0000 (UTC) Received: from people01.haj.ipfire.org (people01.haj.ipfire.org [IPv6:2001:678:b28::161]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519 server-signature RSA-PSS (4096 bit raw public key) server-digest SHA256 client-signature ECDSA (secp384r1) client-digest SHA384) (Client CN "people01.haj.ipfire.org", Issuer "E8" (not verified)) by mail01.ipfire.org (Postfix) with ESMTPS id 4gV64H3rLczV2 for ; Tue, 02 Jun 2026 10:09:03 +0000 (UTC) DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003ed25519; t=1780394943; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=sVC/8tEzmkvAK/md8EVdmGqScNl9Bd2iGOIKgmYNuTI=; b=4XxTEIkuOvOGCtworTT3qjB8F81IWd5JNNnA24ZkBzwcMGz5tXca+NdaRxuDORwqc4jLro iuMtVKpMUMuLbaCA== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ipfire.org; s=202003rsa; t=1780394943; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc; bh=sVC/8tEzmkvAK/md8EVdmGqScNl9Bd2iGOIKgmYNuTI=; b=Qh32hWK+B4uWsktw10foc9SPCN8k7YKqnK99vNd68giXDgsfKV864MTJA56M5SlVuWA2ag JVQvr/g12ksS+t2zbDqeoU3t9I/QoTJGqgInHmWZAL8mpOJhGzYuSdqokZXycqWnXcJhOZ hE1B21rBTS60K9zy5gy1apgFOOkxCarcV7qnlzFDxGZtInhLxxN1IbHnKTYEzcCib/2k/T V+Td8cKTHV+QZg2KaiCijR/BG0T60RPe7yzhVFYtobYWx1q6RIsSSSpPkrWzbt0zxempBz bzql1eZy0zaKS170P+/zf1wKI+b2qLUj/TOHf1fv3gEyZNh7OowRjK6lr7Z5Vg== Received: by people01.haj.ipfire.org (Postfix, from userid 1000) id 4gV64G2V60z2xHq; Tue, 02 Jun 2026 10:09:02 +0000 (UTC) To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] The artwork of the ipfire project. branch, master, updated. 869913ab8e833f586659d04312aa0c0c0389bbb6 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 06638a33ac6e3c1e1e7c0b556f450536d2fd5d18 X-Git-Newrev: 869913ab8e833f586659d04312aa0c0c0389bbb6 Message-Id: <4gV64G2V60z2xHq@people01.haj.ipfire.org> Date: Tue, 02 Jun 2026 10:09:02 +0000 (UTC) From: Michael Tremer Precedence: list List-Id: List-Subscribe: , List-Unsubscribe: , List-Post: List-Help: Sender: Mail-Followup-To: This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "The artwork of the ipfire project.". The branch, master has been updated via 869913ab8e833f586659d04312aa0c0c0389bbb6 (commit) from 06638a33ac6e3c1e1e7c0b556f450536d2fd5d18 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 869913ab8e833f586659d04312aa0c0c0389bbb6 Author: Michael Tremer Date: Tue Jun 2 11:08:48 2026 +0100 bios: Make the background black Signed-off-by: Michael Tremer ----------------------------------------------------------------------- Summary of changes: Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) Difference in files: diff --git a/Makefile b/Makefile index 98838b7..13e4054 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,7 @@ OBJECTS += \ # Colors PRIMARY = ff2e52 DARK = 363636 +BLACK = 000000 WHITE = ffffff # rsvg-convert command line @@ -182,10 +183,10 @@ standard/favicon.svg: favicon-standalone.svg $(TO_INVERTED) # BIOS Boot Logo -bios/boot-logo.bmp: logo-standalone.svg +bios/boot-logo.bmp: logo-inverted-standalone.svg mkdir -p $(dir $@) && \ $(RSVG_CONVERT) --width=360 $< | \ - $(MAGICK) - -background "#$(WHITE)" -gravity center -extent 800x600 \ + $(MAGICK) - -background "#$(BLACK)" -gravity center -extent 800x600 \ -alpha remove -alpha off -type TrueColor BMP3:$@ .PHONY: clean hooks/post-receive -- The artwork of the ipfire project.