blob: f63f52615c389fba8cd0ea1e1410685777874f36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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_hard())
return "cb_plus_logo.bmp";
else if (chromeos_device_branded_plus_soft())
return "cb_plus_logo.bmp";
else
return "cb_logo.bmp";
}
|