xref: /aosp_15_r20/external/coreboot/src/vendorcode/google/chromeos/splash.c (revision b9411a12aaaa7e1e6a6fb7c5e057f44ee179a49c)
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <bootsplash.h>
4 #include <vendorcode/google/chromeos/chromeos.h>
5 
bmp_logo_filename(void)6 const char *bmp_logo_filename(void)
7 {
8 	if (chromeos_device_branded_plus_hard())
9 		return "cb_plus_logo.bmp";
10 	else if (chromeos_device_branded_plus_soft())
11 		return "cb_plus_logo.bmp";
12 	else
13 		return "cb_logo.bmp";
14 }
15