Define kobj_machdep and module_init_md empty functions so that powerpc

kernels (at least macppc) with 'options MODULAR' can be built.
This commit is contained in:
jmmv 2010-01-18 23:35:51 +00:00
parent c3bed4804d
commit a762eed1dd
2 changed files with 22 additions and 4 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: kobj_machdep.c,v 1.2 2008/04/28 20:23:32 martin Exp $ */
/* $NetBSD: kobj_machdep.c,v 1.3 2010/01/18 23:35:51 jmmv Exp $ */
/*-
* Copyright (c) 2008 The NetBSD Foundation, Inc.
@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: kobj_machdep.c,v 1.2 2008/04/28 20:23:32 martin Exp $");
__KERNEL_RCSID(0, "$NetBSD: kobj_machdep.c,v 1.3 2010/01/18 23:35:51 jmmv Exp $");
#define ELFSIZE ARCH_ELFSIZE
@ -141,3 +141,10 @@ kobj_reloc(kobj_t ko, uintptr_t relocbase, const void *data,
return 0;
}
int
kobj_machdep(kobj_t ko, void *base, size_t size, bool load)
{
return 0;
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: powerpc_machdep.c,v 1.41 2009/12/10 14:13:51 matt Exp $ */
/* $NetBSD: powerpc_machdep.c,v 1.42 2010/01/18 23:35:51 jmmv Exp $ */
/*
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@ -32,9 +32,10 @@
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.41 2009/12/10 14:13:51 matt Exp $");
__KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.42 2010/01/18 23:35:51 jmmv Exp $");
#include "opt_altivec.h"
#include "opt_modular.h"
#include <sys/param.h>
#include <sys/conf.h>
@ -48,6 +49,7 @@ __KERNEL_RCSID(0, "$NetBSD: powerpc_machdep.c,v 1.41 2009/12/10 14:13:51 matt Ex
#include <sys/sysctl.h>
#include <sys/ucontext.h>
#include <sys/cpu.h>
#include <sys/module.h>
int cpu_timebase;
int cpu_printfataltraps;
@ -301,3 +303,12 @@ cpu_intr_p(void)
return curcpu()->ci_idepth != 0;
}
#ifdef MODULAR
/*
* Push any modules loaded by the boot loader.
*/
void
module_init_md(void)
{
}
#endif /* MODULAR */