From ab5ff2ab3652a9527cfbbfca8dc0923b9c22b3e8 Mon Sep 17 00:00:00 2001 From: Michael Tremer Date: Sat, 19 May 2012 18:24:42 +0200 Subject: [PATCH] Add background image for grub. --- Makefile | 2 +- bootloader/Makefile | 24 ++++++++++ bootloader/background.svg | 93 +++++++++++++++++++++++++++++++++++++++ 3 files changed, 118 insertions(+), 1 deletion(-) create mode 100644 bootloader/Makefile create mode 100644 bootloader/background.svg diff --git a/Makefile b/Makefile index 7253e1b..614ad8a 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ include Makeconf include Makerules -SUBDIRS = icons plymouth +SUBDIRS = bootloader icons plymouth all: for subdir in $(SUBDIRS); do \ diff --git a/bootloader/Makefile b/bootloader/Makefile new file mode 100644 index 0000000..023804f --- /dev/null +++ b/bootloader/Makefile @@ -0,0 +1,24 @@ +############################################################################### +# IPFire.org - An Open Source Firewall Solution # +# Copyright (C) - IPFire Development Team # +############################################################################### + +include ../Makeconf +include ../Makerules + +GRUB_THEME_PATH = $(DESTDIR)/boot/grub/themes/system/ + +BOOTLOADER_BACKGROUND_IN = background.svg +BOOTLOADER_BACKGROUND_OUT = background.png + +all: $(BOOTLOADER_BACKGROUND_OUT) + +$(BOOTLOADER_BACKGROUND_OUT): $(BOOTLOADER_BACKGROUND_IN) + convert $< $@ + +install: $(BOOTLOADER_BACKGROUND_OUT) + -mkdir pv $(GRUB_THEME_PATH) + install -m 644 $< $(GRUB_THEME_PATH) + +clean: + rm -vf $(BOOTLOADER_BACKGROUND_OUT) diff --git a/bootloader/background.svg b/bootloader/background.svg new file mode 100644 index 0000000..e79804d --- /dev/null +++ b/bootloader/background.svg @@ -0,0 +1,93 @@ + + + + + + + + + + + + + + + + + image/svg+xml + + + + + + + + + -- 2.39.2