1*4b0730d2SSimon Glass/* 2*4b0730d2SSimon Glass * Copyright (c) 2011 The Chromium OS Authors. 3*4b0730d2SSimon Glass * Use of this source code is governed by a BSD-style license that can be 4*4b0730d2SSimon Glass * found in the LICENSE file. 5*4b0730d2SSimon Glass * 6*4b0730d2SSimon Glass * See file CREDITS for list of people who contributed to this 7*4b0730d2SSimon Glass * project. 8*4b0730d2SSimon Glass * 9*4b0730d2SSimon Glass * This program is free software; you can redistribute it and/or 10*4b0730d2SSimon Glass * modify it under the terms of the GNU General Public License as 11*4b0730d2SSimon Glass * published by the Free Software Foundation; either version 2 of 12*4b0730d2SSimon Glass * the License, or (at your option) any later version. 13*4b0730d2SSimon Glass * 14*4b0730d2SSimon Glass * This program is distributed in the hope that it will be useful, 15*4b0730d2SSimon Glass * but WITHOUT ANY WARRANTY; without even the implied warranty of 16*4b0730d2SSimon Glass * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 17*4b0730d2SSimon Glass * GNU General Public License for more details. 18*4b0730d2SSimon Glass * 19*4b0730d2SSimon Glass * You should have received a copy of the GNU General Public License 20*4b0730d2SSimon Glass * along with this program; if not, write to the Free Software 21*4b0730d2SSimon Glass * Foundation, Inc., 59 Temple Place, Suite 330, Boston, 22*4b0730d2SSimon Glass * MA 02111-1307 USA 23*4b0730d2SSimon Glass */ 24*4b0730d2SSimon Glass 25*4b0730d2SSimon GlassSECTIONS 26*4b0730d2SSimon Glass{ 27*4b0730d2SSimon Glass __u_boot_cmd_start = .; 28*4b0730d2SSimon Glass .u_boot_cmd : { *(.u_boot_cmd) } 29*4b0730d2SSimon Glass __u_boot_cmd_end = .; 30*4b0730d2SSimon Glass __bss_start = .; 31*4b0730d2SSimon Glass 32*4b0730d2SSimon Glass} 33*4b0730d2SSimon Glass 34*4b0730d2SSimon GlassINSERT BEFORE .data; 35