summaryrefslogtreecommitdiffstats
path: root/anaconda
diff options
context:
space:
mode:
authorTom "spot" Callaway <tcallawa@redhat.com>2008-09-10 16:22:29 -0400
committerTom "spot" Callaway <tcallawa@redhat.com>2008-09-10 16:22:29 -0400
commit83a12685b658a325dccd60dabf7e2fda3cee1664 (patch)
tree4e2eaa890b0612e26546c128536d1597fd323138 /anaconda
downloadfedora-logos-83a12685b658a325dccd60dabf7e2fda3cee1664.tar.gz
fedora-logos-83a12685b658a325dccd60dabf7e2fda3cee1664.tar.xz
fedora-logos-83a12685b658a325dccd60dabf7e2fda3cee1664.zip
initial git commit
Diffstat (limited to 'anaconda')
-rw-r--r--anaconda/Makefile27
-rw-r--r--anaconda/README19
-rw-r--r--anaconda/anaconda_header.pngbin0 -> 32849 bytes
-rw-r--r--anaconda/progress_first-lowres.pngbin0 -> 59610 bytes
-rw-r--r--anaconda/progress_first.pngbin0 -> 65792 bytes
-rw-r--r--anaconda/splash.pngbin0 -> 65792 bytes
-rwxr-xr-xanaconda/splashtolss.sh12
-rw-r--r--anaconda/syslinux-splash.pngbin0 -> 54695 bytes
-rw-r--r--anaconda/syslinux-vesa-splash.jpgbin0 -> 156211 bytes
9 files changed, 58 insertions, 0 deletions
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
--- /dev/null
+++ b/anaconda/anaconda_header.png
Binary files differ
diff --git a/anaconda/progress_first-lowres.png b/anaconda/progress_first-lowres.png
new file mode 100644
index 0000000..4a5762c
--- /dev/null
+++ b/anaconda/progress_first-lowres.png
Binary files differ
diff --git a/anaconda/progress_first.png b/anaconda/progress_first.png
new file mode 100644
index 0000000..ccbc1ee
--- /dev/null
+++ b/anaconda/progress_first.png
Binary files differ
diff --git a/anaconda/splash.png b/anaconda/splash.png
new file mode 100644
index 0000000..ccbc1ee
--- /dev/null
+++ b/anaconda/splash.png
Binary files 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 <source> <output>"
+ 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
--- /dev/null
+++ b/anaconda/syslinux-splash.png
Binary files differ
diff --git a/anaconda/syslinux-vesa-splash.jpg b/anaconda/syslinux-vesa-splash.jpg
new file mode 100644
index 0000000..0c1f187
--- /dev/null
+++ b/anaconda/syslinux-vesa-splash.jpg
Binary files differ