NetBSD/sys/modules/arch/arm/kmodhide.awk
matt 1e205987d1 awk support scripts to generate trampolines in modules.
(adapted from previous LKM method).
<machine/asm.h> now has a KMODTRAMPOLINE macro to generate the trampoline
2013-08-07 17:06:22 +00:00

6 lines
130 B
Awk

# $NetBSD: kmodhide.awk,v 1.1 2013/08/07 17:06:22 matt Exp $
substr($NF, 1, 7) == "__wrap_" {
print " --localize-symbol "$NF;
}