Utilize HAIKU_DISTRO_COMPATIBILITY for the boot splash. Currently only

'--distro-compatibility official' will result in the HAIKU logo being
displayed. When 'default' or 'compatible', only the icons will display. Due to
issues with generate_boot_screen, the "development" logo is not utilized.

Relates to #6183 and #6255


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@37740 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Matt Madia 2010-07-25 20:22:10 +00:00
parent 9072a31477
commit 2dc707e529
2 changed files with 9 additions and 1 deletions

View File

@ -11,8 +11,12 @@
#include <boot/platform.h>
#include <boot/menu.h>
#include <boot/kernel_args.h>
#include <boot/images.h>
#include <boot/platform/generic/video.h>
#ifdef HAIKU_DISTRO_COMPATIBILITY_OFFICIAL
#include <boot/images.h>
#else
#include <boot/images-sans-tm.h>
#endif
#include <stdio.h>
#include <stdlib.h>

View File

@ -15,7 +15,11 @@
#include <KernelExport.h>
#define __BOOTSPLASH_KERNEL__
#ifdef HAIKU_DISTRO_COMPATIBILITY_OFFICIAL
#include <boot/images.h>
#else
#include <boot/images-sans-tm.h>
#endif
#include <boot_item.h>