Removal of non-Haiku target platform logic from build system (part 1.)
[haiku.git] / src / tests / system / boot / loader / platform_misc.cpp
blob7a48116fc478929dc639dbea5a4971d08d8c26f4
1 /*
2 * Copyright 2003-2007, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
7 #include <boot/platform.h>
10 extern bool gShowMenu;
13 uint32
14 platform_boot_options(void)
16 return gShowMenu ? BOOT_OPTION_MENU: 0;
20 status_t
21 platform_init_video(void)
23 return B_OK;
27 void
28 platform_switch_to_logo(void)
33 void
34 platform_switch_to_text_mode(void)
39 // #pragma mark -
42 extern "C" status_t
43 boot_arch_elf_relocate_rel(struct preloaded_image *image, Elf32_Rel *rel,
44 int rel_len)
46 return B_ERROR;
50 extern "C" status_t
51 boot_arch_elf_relocate_rela(struct preloaded_image *image, Elf32_Rela *rel,
52 int rel_len)
54 return B_ERROR;