blob: 3532fb8f5a517178c4a99c205bce93067707ab7f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* SPDX-License-Identifier: GPL-2.0-only */
#include <bootsplash.h>
#include <vendorcode/google/chromeos/chromeos.h>
const char *bmp_logo_filename(void)
{
if (chromeos_device_branded_plus())
return "cb_plus_logo.bmp";
else
return "cb_logo.bmp";
}
|