Home | History | Annotate | Line # | Download | only in arm
kmodwrap.awk revision 1.1
      1  1.1  matt #	$NetBSD: kmodwrap.awk,v 1.1 2013/08/07 17:06:22 matt Exp $
      2  1.1  matt 
      3  1.1  matt $2 == "R_ARM_PC24" || $2 == "R_ARM_CALL" || $2 == "R_ARM_JUMP24" {
      4  1.1  matt 	if (x[$3] != "")
      5  1.1  matt 		next;
      6  1.1  matt 	if (index($3, ".text") > 0)
      7  1.1  matt 		next
      8  1.1  matt 	printf " --wrap="$3;
      9  1.1  matt 	x[$3]=".";
     10  1.1  matt }
     11