1e7cbe64fSgw#
2e7cbe64fSgw# CDDL HEADER START
3e7cbe64fSgw#
4e7cbe64fSgw# The contents of this file are subject to the terms of the
5e7cbe64fSgw# Common Development and Distribution License (the "License").
6e7cbe64fSgw# You may not use this file except in compliance with the License.
7e7cbe64fSgw#
8e7cbe64fSgw# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9e7cbe64fSgw# or http://www.opensolaris.org/os/licensing.
10e7cbe64fSgw# See the License for the specific language governing permissions
11e7cbe64fSgw# and limitations under the License.
12e7cbe64fSgw#
13e7cbe64fSgw# When distributing Covered Code, include this CDDL HEADER in each
14e7cbe64fSgw# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15e7cbe64fSgw# If applicable, add the following below this CDDL HEADER, with the
16e7cbe64fSgw# fields enclosed by brackets "[]" replaced with your own identifying
17e7cbe64fSgw# information: Portions Copyright [yyyy] [name of copyright owner]
18e7cbe64fSgw#
19e7cbe64fSgw# CDDL HEADER END
20e7cbe64fSgw#
21*cd3e9333SAli Bahrami# Copyright (c) 2008, 2010, Oracle and/or its affiliates. All rights reserved.
22e7cbe64fSgw#
23e7cbe64fSgw# psm/stand/bootlst/sparc/mapfile
24e7cbe64fSgw#
25e7cbe64fSgw
26*cd3e9333SAli Bahrami$mapfile_version 2
27*cd3e9333SAli Bahrami
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};
36e7cbe64fSgw
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