1*e11f6fbcSbarnette# 2*e11f6fbcSbarnette# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 3*e11f6fbcSbarnette# Use is subject to license terms. 4*e11f6fbcSbarnette# 5*e11f6fbcSbarnette# CDDL HEADER START 6*e11f6fbcSbarnette# 7*e11f6fbcSbarnette# The contents of this file are subject to the terms of the 8*e11f6fbcSbarnette# Common Development and Distribution License, Version 1.0 only 9*e11f6fbcSbarnette# (the "License"). You may not use this file except in compliance 10*e11f6fbcSbarnette# with the License. 11*e11f6fbcSbarnette# 12*e11f6fbcSbarnette# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 13*e11f6fbcSbarnette# or http://www.opensolaris.org/os/licensing. 14*e11f6fbcSbarnette# See the License for the specific language governing permissions 15*e11f6fbcSbarnette# and limitations under the License. 16*e11f6fbcSbarnette# 17*e11f6fbcSbarnette# When distributing Covered Code, include this CDDL HEADER in each 18*e11f6fbcSbarnette# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 19*e11f6fbcSbarnette# If applicable, add the following below this CDDL HEADER, with the 20*e11f6fbcSbarnette# fields enclosed by brackets "[]" replaced with your own identifying 21*e11f6fbcSbarnette# information: Portions Copyright [yyyy] [name of copyright owner] 22*e11f6fbcSbarnette# 23*e11f6fbcSbarnette# CDDL HEADER END 24*e11f6fbcSbarnette# 25*e11f6fbcSbarnette#ident "%Z%%M% %I% %E% SMI" 26*e11f6fbcSbarnette# 27*e11f6fbcSbarnette 28*e11f6fbcSbarnette# 29*e11f6fbcSbarnette# Some four meg of kernel virtual address space 30*e11f6fbcSbarnette# is mapped via a locked 4-meg mapping in the ITLB 31*e11f6fbcSbarnette# 32*e11f6fbcSbarnettetext = LOAD ?RXN V0x01000000; 33*e11f6fbcSbarnettetext | .text; 34*e11f6fbcSbarnettetext : $PROGBITS ?A!W; 35*e11f6fbcSbarnette 36*e11f6fbcSbarnette# 37*e11f6fbcSbarnette# Another four meg of kernel virtual address space 38*e11f6fbcSbarnette# is mapped via a locked 4-meg mapping in the DTLB 39*e11f6fbcSbarnette# 40*e11f6fbcSbarnettedata = LOAD ?RWX V0x01800000 A0x00400000; 41*e11f6fbcSbarnettedata | .data; 42*e11f6fbcSbarnettedata : $PROGBITS ?AW; 43*e11f6fbcSbarnettedata : $NOBITS ?AW; 44*e11f6fbcSbarnette 45*e11f6fbcSbarnettereloc = LOAD ?RW V0x0; 46*e11f6fbcSbarnettereloc : $DYNSYM; 47*e11f6fbcSbarnettereloc : $HASH; 48*e11f6fbcSbarnettereloc : .dynstr; 49*e11f6fbcSbarnettereloc : .rela.text; 50*e11f6fbcSbarnettereloc : .rela.data; 51*e11f6fbcSbarnette 52*e11f6fbcSbarnettenote = NOTE; 53*e11f6fbcSbarnettenote : $NOTE; 54