From 83a12685b658a325dccd60dabf7e2fda3cee1664 Mon Sep 17 00:00:00 2001 From: "Tom \"spot\" Callaway" Date: Wed, 10 Sep 2008 16:22:29 -0400 Subject: initial git commit --- anaconda/Makefile | 27 +++++++++++++++++++++++++++ anaconda/README | 19 +++++++++++++++++++ anaconda/anaconda_header.png | Bin 0 -> 32849 bytes anaconda/progress_first-lowres.png | Bin 0 -> 59610 bytes anaconda/progress_first.png | Bin 0 -> 65792 bytes anaconda/splash.png | Bin 0 -> 65792 bytes anaconda/splashtolss.sh | 12 ++++++++++++ anaconda/syslinux-splash.png | Bin 0 -> 54695 bytes anaconda/syslinux-vesa-splash.jpg | Bin 0 -> 156211 bytes 9 files changed, 58 insertions(+) create mode 100644 anaconda/Makefile create mode 100644 anaconda/README create mode 100644 anaconda/anaconda_header.png create mode 100644 anaconda/progress_first-lowres.png create mode 100644 anaconda/progress_first.png create mode 100644 anaconda/splash.png create mode 100755 anaconda/splashtolss.sh create mode 100644 anaconda/syslinux-splash.png create mode 100644 anaconda/syslinux-vesa-splash.jpg (limited to 'anaconda') diff --git a/anaconda/Makefile b/anaconda/Makefile new file mode 100644 index 0000000..7f4c8dc --- /dev/null +++ b/anaconda/Makefile @@ -0,0 +1,27 @@ +ANACONDADATADIR = /usr/share/anaconda +ANACONDARUNTIMEDIR = /usr/lib/anaconda-runtime + +all: + @echo "Nothing to do." + +splash.lss: syslinux-splash.png + ./splashtolss.sh syslinux-splash.png splash.lss + +install: + @if [ "$(DESTDIR)" = "" ]; then \ + echo " "; \ + echo "ERROR: A destdir is required"; \ + exit 1; \ + fi + + mkdir -p $(DESTDIR)/$(ANACONDADATADIR) + mkdir -p $(DESTDIR)/$(ANACONDADATADIR)/pixmaps + install -m 644 *.png $(DESTDIR)/$(ANACONDADATADIR)/pixmaps + + mkdir -p $(DESTDIR)/$(ANACONDARUNTIMEDIR)/boot + install -m 644 syslinux-splash.png $(DESTDIR)/$(ANACONDARUNTIMEDIR)/boot/syslinux-splash.png + install -m 755 splashtolss.sh $(DESTDIR)/$(ANACONDARUNTIMEDIR) + install -m 644 syslinux-vesa-splash.jpg $(DESTDIR)/$(ANACONDARUNTIMEDIR) + +clean: + rm -f splash.lss diff --git a/anaconda/README b/anaconda/README new file mode 100644 index 0000000..7d06024 --- /dev/null +++ b/anaconda/README @@ -0,0 +1,19 @@ +These files are used by anaconda during the installation process. A +basic description/specification for them is as follows: + +* anaconda_header.png: This is strip header at the top of + the screen during the install. 800x58. +* progress_first.png: First graphic displayed during package + installation. If there are no rnotes, this is displayed the entire + time. 500x325 +* progress_first-lowres.png: Lowres version of progress_first.png. 350x225 +* splash.png: Splash screen shown on the "Welcome to ..." screen. + 400x420 +* syslinux-splash.png: Splash screen used at the boot prompt with + syslinux/isolinux. This gets transformed into the syslinux specific + format. 640x300. This uses a 16 color palette (should be an indexed png). + You should ensure that 0 = #000000, 1 = #ffffff, 7 = #cdcfd5, 15 = #c90000. + Alternately, you can use 12 colors and have them be any that you want. +* syslinux-vesa-splash.jpg: Splash screen used at the boot prompt when + using the menu. It should be 640x480 RGB. Can just be a conversion + of the grub splash and work well. diff --git a/anaconda/anaconda_header.png b/anaconda/anaconda_header.png new file mode 100644 index 0000000..e7bffbb Binary files /dev/null and b/anaconda/anaconda_header.png differ diff --git a/anaconda/progress_first-lowres.png b/anaconda/progress_first-lowres.png new file mode 100644 index 0000000..4a5762c Binary files /dev/null and b/anaconda/progress_first-lowres.png differ diff --git a/anaconda/progress_first.png b/anaconda/progress_first.png new file mode 100644 index 0000000..ccbc1ee Binary files /dev/null and b/anaconda/progress_first.png differ diff --git a/anaconda/splash.png b/anaconda/splash.png new file mode 100644 index 0000000..ccbc1ee Binary files /dev/null and b/anaconda/splash.png differ diff --git a/anaconda/splashtolss.sh b/anaconda/splashtolss.sh new file mode 100755 index 0000000..c595a99 --- /dev/null +++ b/anaconda/splashtolss.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +usage() { + echo "Usage: $0 " + exit 1 +} + +if [ -z "$1" -o -z "$2" ]; then + usage +fi + +pngtopnm $1 | ppmtolss16 \#cdcfd5=7 \#ffffff=1 \#000000=0 \#c90000=15 > $2 diff --git a/anaconda/syslinux-splash.png b/anaconda/syslinux-splash.png new file mode 100644 index 0000000..ce20047 Binary files /dev/null and b/anaconda/syslinux-splash.png differ diff --git a/anaconda/syslinux-vesa-splash.jpg b/anaconda/syslinux-vesa-splash.jpg new file mode 100644 index 0000000..0c1f187 Binary files /dev/null and b/anaconda/syslinux-vesa-splash.jpg differ -- cgit