Skip to content
Snippets Groups Projects
Commit dd23afe7 authored by Jonas Höppner's avatar Jonas Höppner Committed by Clemens Terasa
Browse files

logo: Add Garz & Fricke logos

As per request form the marketing department, add a neutral Garz &
Fricke boot splash. This also fits into the Garz & Fricke group.

Also add a Flash-N-Go System logo.

BCS 746-000275
BCS 746-000468
parent 88ec678e
No related branches found
No related tags found
No related merge requests found
......@@ -68,4 +68,14 @@ config LOGO_SUPERH_CLUT224
depends on SUPERH
default y
config LOGO_GF_FNGSYSTEM_CLUT224
bool "224-color Garz & Fricke FNG System Logo"
depends on LOGO
default y
config LOGO_GF_CLUT224
bool "224-color Garz & Fricke Logo"
depends on LOGO
default y
endif # LOGO
......@@ -13,6 +13,8 @@ obj-$(CONFIG_LOGO_SUN_CLUT224) += logo_sun_clut224.o
obj-$(CONFIG_LOGO_SUPERH_MONO) += logo_superh_mono.o
obj-$(CONFIG_LOGO_SUPERH_VGA16) += logo_superh_vga16.o
obj-$(CONFIG_LOGO_SUPERH_CLUT224) += logo_superh_clut224.o
obj-$(CONFIG_LOGO_GF_FNGSYSTEM_CLUT224) += logo_gffngsystem_clut224.o
obj-$(CONFIG_LOGO_GF_CLUT224) += logo_gf_clut224.o
obj-$(CONFIG_SPU_BASE) += logo_spe_clut224.o
......
......@@ -99,6 +99,14 @@ const struct linux_logo * __ref fb_find_logo(int depth)
#ifdef CONFIG_LOGO_SUPERH_CLUT224
/* SuperH Linux logo */
logo = &logo_superh_clut224;
#endif
#ifdef CONFIG_LOGO_GF_CLUT224
/* Garz&Fricke logo */
logo = &logo_gf_clut224;
#endif
#ifdef CONFIG_LOGO_GF_FNGSYSTEM_CLUT224
/* Garz&Fricke FNGSystem */
logo = &logo_gffngsystem_clut224;
#endif
}
return logo;
......
source diff could not be displayed: it is too large. Options to address this: view the blob.
source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -45,6 +45,8 @@ extern const struct linux_logo logo_superh_mono;
extern const struct linux_logo logo_superh_vga16;
extern const struct linux_logo logo_superh_clut224;
extern const struct linux_logo logo_spe_clut224;
extern const struct linux_logo logo_gffngsystem_clut224;
extern const struct linux_logo logo_gf_clut224;
extern const struct linux_logo *fb_find_logo(int depth);
#ifdef CONFIG_FB_LOGO_EXTRA
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment