From: Jeremy Kerr Date: Thu, 5 Apr 2007 01:40:42 +0000 (+1000) Subject: Use a tux icon as the default for boot options X-Git-Tag: v0.0.1~18 X-Git-Url: http://git.ozlabs.org/?p=petitboot;a=commitdiff_plain;h=c26b2a1d05865bc92e795797e5d0535edd2aca77;hp=457341fd01e3796f908dd1c428bf1b23eabee704;ds=sidebyside Use a tux icon as the default for boot options Signed-off-by: Jeremy Kerr --- diff --git a/Makefile b/Makefile index ff7d446..21bbd1b 100644 --- a/Makefile +++ b/Makefile @@ -10,7 +10,7 @@ LDFLAGS = CFLAGS = -O0 -ggdb -Wall '-DPREFIX="$(PREFIX)"' PARSERS = native yaboot kboot -ARTWORK = background.jpg cdrom.png hdd.png usbpen.png cursor.gz +ARTWORK = background.jpg cdrom.png hdd.png usbpen.png tux.png cursor.gz all: petitboot udev-helper diff --git a/artwork/tux.png b/artwork/tux.png new file mode 100644 index 0000000..99f3465 Binary files /dev/null and b/artwork/tux.png differ diff --git a/devices.c b/devices.c index 4936f9a..e4d6913 100644 --- a/devices.c +++ b/devices.c @@ -13,7 +13,7 @@ #include "petitboot-paths.h" #include "devices/message.h" -#define PBOOT_DEFAULT_ICON "usbpen.png" +#define PBOOT_DEFAULT_ICON "tux.png" static const char *default_icon = artwork_pathname(PBOOT_DEFAULT_ICON);