Clone atari platform args headers. This gets the Amiga loader to link.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@38937 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
François Revol 2010-10-10 18:16:16 +00:00
parent 72cf60a534
commit 91d95c16eb
2 changed files with 39 additions and 0 deletions

View File

@ -0,0 +1,23 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef KERNEL_BOOT_PLATFORM_AMIGA_KERNEL_ARGS_H
#define KERNEL_BOOT_PLATFORM_AMIGA_KERNEL_ARGS_H
#ifndef KERNEL_BOOT_KERNEL_ARGS_H
# error This file is included from <boot/kernel_args.h> only
#endif
// must match SMP_MAX_CPUS in arch_smp.h
#define MAX_BOOT_CPUS 1
#define MAX_PHYSICAL_MEMORY_RANGE 4
#define MAX_PHYSICAL_ALLOCATED_RANGE 8
#define MAX_VIRTUAL_ALLOCATED_RANGE 32
typedef struct {
int dummy; // nothing yet XXX
} platform_kernel_args;
#endif /* KERNEL_BOOT_PLATFORM_AMIGA_KERNEL_ARGS_H */

View File

@ -0,0 +1,16 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef KERNEL_BOOT_PLATFORM_AMIGA_M68K_STAGE2_ARGS_H
#define KERNEL_BOOT_PLATFORM_AMIGA_M68K_STAGE2_ARGS_H
#ifndef KERNEL_BOOT_STAGE2_ARGS_H
# error This file is included from <boot/stage2_args.h> only
#endif
struct platform_stage2_args {
int dummy;
};
#endif /* KERNEL_BOOT_PLATFORM_AMIGA_M68K_STAGE2_ARGS_H */