xref: /haiku/headers/private/kernel/boot/platform/u-boot/platform_stage2_args.h (revision 25a7b01d15612846f332751841da3579db313082)
1 /*
2  * Copyright 2009 Haiku Inc. All rights reserved.
3  * Distributed under the terms of the MIT License.
4  */
5 #ifndef KERNEL_BOOT_PLATFORM_UBOOT_STAGE2_H
6 #define KERNEL_BOOT_PLATFORM_UBOOT_STAGE2_H
7 
8 #ifndef KERNEL_BOOT_STAGE2_ARGS_H
9 #	error This file is included from <boot/stage2_args.h> only
10 #endif
11 
12 struct platform_stage2_args {
13 	void *boot_tgz_data;
14 	uint32 boot_tgz_size;
15 	void *fdt_data;
16 	uint32 fdt_size;
17 };
18 
19 #endif	/* KERNEL_BOOT_PLATFORM_UBOOT_STAGE2_H */
20