1e7cbe64fSgw25295# 2e7cbe64fSgw25295# CDDL HEADER START 3e7cbe64fSgw25295# 4e7cbe64fSgw25295# The contents of this file are subject to the terms of the 5e7cbe64fSgw25295# Common Development and Distribution License (the "License"). 6e7cbe64fSgw25295# You may not use this file except in compliance with the License. 7e7cbe64fSgw25295# 8e7cbe64fSgw25295# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9e7cbe64fSgw25295# or http://www.opensolaris.org/os/licensing. 10e7cbe64fSgw25295# See the License for the specific language governing permissions 11e7cbe64fSgw25295# and limitations under the License. 12e7cbe64fSgw25295# 13e7cbe64fSgw25295# When distributing Covered Code, include this CDDL HEADER in each 14e7cbe64fSgw25295# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15e7cbe64fSgw25295# If applicable, add the following below this CDDL HEADER, with the 16e7cbe64fSgw25295# fields enclosed by brackets "[]" replaced with your own identifying 17e7cbe64fSgw25295# information: Portions Copyright [yyyy] [name of copyright owner] 18e7cbe64fSgw25295# 19e7cbe64fSgw25295# CDDL HEADER END 20e7cbe64fSgw25295# 21*cd3e9333SAli Bahrami# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved. 22e7cbe64fSgw25295# 23e7cbe64fSgw25295# psm/stand/bootlst/sparc/mapfile 24e7cbe64fSgw25295# 25e7cbe64fSgw25295 26*cd3e9333SAli Bahrami$mapfile_version 2 27e7cbe64fSgw25295 28*cd3e9333SAli BahramiLOAD_SEGMENT text { 29*cd3e9333SAli Bahrami FLAGS = READ EXECUTE; 30*cd3e9333SAli Bahrami VADDR = 0x100000; 31*cd3e9333SAli Bahrami ASSIGN_SECTION { 32*cd3e9333SAli Bahrami TYPE = PROGBITS; 33*cd3e9333SAli Bahrami FLAGS = ALLOC !WRITE; 34*cd3e9333SAli Bahrami }; 35*cd3e9333SAli Bahrami}; 36e7cbe64fSgw25295 37*cd3e9333SAli BahramiLOAD_SEGMENT data { 38*cd3e9333SAli Bahrami FLAGS = READ WRITE EXECUTE; 39*cd3e9333SAli Bahrami ALIGN = 0x8; 40*cd3e9333SAli Bahrami ASSIGN_SECTION { 41*cd3e9333SAli Bahrami TYPE = PROGBITS; 42*cd3e9333SAli Bahrami FLAGS = ALLOC WRITE; 43*cd3e9333SAli Bahrami }; 44*cd3e9333SAli Bahrami ASSIGN_SECTION { 45*cd3e9333SAli Bahrami TYPE = NOBITS; 46*cd3e9333SAli Bahrami FLAGS = ALLOC WRITE; 47*cd3e9333SAli Bahrami }; 48*cd3e9333SAli Bahrami }; 49*cd3e9333SAli Bahrami 50*cd3e9333SAli BahramiNOTE_SEGMENT note { 51*cd3e9333SAli Bahrami ASSIGN_SECTION { 52*cd3e9333SAli Bahrami TYPE = NOTE; 53*cd3e9333SAli Bahrami }; 54*cd3e9333SAli Bahrami}; 55