1    /* 
     2     *  Copyright (c) 2014 Texas Instruments. All rights reserved. 
     3     *  This program and the accompanying materials are made available under the 
     4     *  terms of the Eclipse Public License v1.0 and Eclipse Distribution License
     5     *  v. 1.0 which accompanies this distribution. The Eclipse Public License is
     6     *  available at http://www.eclipse.org/legal/epl-v10.html and the Eclipse
     7     *  Distribution License is available at 
     8     *  http://www.eclipse.org/org/documents/edl-v10.php.
     9     *
    10     *  Contributors:
    11     *      Texas Instruments - initial implementation
    12     * */
    13    
    14    /*
    15     *  ======== Settings.xdc ========
    16     */
    17    
    18    package ti.targets.arp32.rts;
    19    
    20    /*!
    21     *  ======== Settings ========
    22     *  Collection of parameters relevant for this package as a whole
    23     *
    24     */
    25    
    26    module Settings {
    27    
    28        /*!
    29         *  ======== bootOnly ========
    30         *  Allow supplying only the boot code library
    31         *
    32         *  This package can supply the boot code and the library with the 
    33         *  implementation of xdc.runtime modules. If this parameter is set to
    34         *  `true`, only the boot code is supplied. Otherwise, both the boot code
    35         *  and the xdc.runtime implementation are supplied.
    36         */
    37        metaonly config Bool bootOnly = false;
    38    }
    39    
    40    /*
    41     *  @(#) ti.targets.arp32.rts; 1, 0, 0,0; 2-10-2017 09:25:55; /db/ztree/library/trees/xdctargets/xdctargets-m11/src/ xlibrary
    42    
    43     */
    44