drivers/video/logo/Kconfig
Source file repositories/reference/linux-study-clean/drivers/video/logo/Kconfig
File Facts
- System
- Linux kernel
- Corpus path
drivers/video/logo/Kconfig- Extension
[no extension]- Size
- 2564 bytes
- Lines
- 80
- Domain
- Driver Families
- Bucket
- drivers/video
- Inferred role
- Driver Families: build/configuration rule
- Status
- atlas-only
Why This File Exists
Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
- Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.
Dependency Surface
- No C-style include directives detected by the generator.
Detected Declarations
- No top-level syscall, struct, function, initcall, or export declaration detected by the generator.
Annotated Snippet
# SPDX-License-Identifier: GPL-2.0-only
#
# Logo configuration
#
menuconfig LOGO
bool "Bootup logo"
depends on FB_CORE || SGI_NEWPORT_CONSOLE
help
Enable and select frame buffer bootup logos.
Monochrome logos will also be used by the DRM panic handler, if
enabled.
if LOGO
config FB_LOGO_EXTRA
bool
depends on FB=y
default y if SPU_BASE
config LOGO_LINUX_MONO
bool "Standard black and white Linux logo"
config LOGO_LINUX_MONO_FILE
string "Monochrome logo .pbm file"
depends on LOGO_LINUX_MONO
default "drivers/video/logo/logo_superh_mono.pbm" if SUPERH
default "drivers/video/logo/logo_linux_mono.pbm"
help
Takes a path to a monochromatic logo in the portable pixmap file
format (.pbm). This defaults to the Tux penguin.
For example, the below ImageMagick command can be used to reduce
an image to black and white and convert it into a pbm file:
magick source_image -compress none destination.pbm
config LOGO_LINUX_VGA16
bool "Standard 16-color Linux logo"
config LOGO_LINUX_VGA16_FILE
string "16-color logo .ppm file"
depends on LOGO_LINUX_VGA16
default "drivers/video/logo/logo_superh_vga16.ppm" if SUPERH
default "drivers/video/logo/logo_linux_vga16.ppm"
help
Takes a path to a logo in the portable pixmap file format (.ppm),
using the 16 colors from the drivers/video/logo/clut_vga16.ppm
palette. This defaults to the Tux penguin.
For example, the below ImageMagick command can be used to reduce an
image to the VGA 16 colors palette and convert into a ppm file:
magick source_image -compress none \
-remap drivers/video/logo/clut_vga16.ppm destination.ppm
config LOGO_LINUX_CLUT224
bool "Standard 224-color Linux logo"
default y
config LOGO_LINUX_CLUT224_FILE
string "224-color logo .ppm file"
depends on LOGO_LINUX_CLUT224
default "drivers/video/logo/logo_dec_clut224.ppm" if MACH_DECSTATION || ALPHA
default "drivers/video/logo/logo_parisc_clut224.ppm" if PARISC
default "drivers/video/logo/logo_sgi_clut224.ppm" if SGI_IP22 || SGI_IP27 || SGI_IP32
default "drivers/video/logo/logo_sun_clut224.ppm" if SPARC
default "drivers/video/logo/logo_superh_clut224.ppm" if SUPERH
default "drivers/video/logo/logo_linux_clut224.ppm"
help
Annotation
- Atlas domain: Driver Families / drivers/video.
- Implementation status: atlas-only.
Implementation Notes
- This generated page is the file-by-file coverage layer; curated subsystem chapters should link here when they synthesize a multi-file control flow.
- Core OS pages should be promoted from atlas-only to deep-reviewed when they explain data structures, invariants, locking, lifecycle, and C implementation snippets.
- Driver-family pages are intentionally pattern-oriented unless they are part of the selected PCIe/NVMe representative device path.