From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Schwarz Date: Fri, 2 Sep 2011 12:50:31 +0200 Subject: [U-Boot] [PATCH V4 1/6] removed static from images in cmd_bootm.c In-Reply-To: <1314960636-19279-1-git-send-email-simonschwarzcor@gmail.com> References: <1314261196-23197-1-git-send-email-simonschwarzcor@gmail.com> <1314960636-19279-1-git-send-email-simonschwarzcor@gmail.com> Message-ID: <1314960636-19279-2-git-send-email-simonschwarzcor@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This removes static modifier from cmd_bootm.c to make it public and usable by savebp Signed-off-by: Simon Schwarz --- common/cmd_bootm.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 1966da4..c642299 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -156,7 +156,7 @@ static boot_os_fn *boot_os[] = { #endif }; -static bootm_headers_t images; /* pointers to os/initrd/fdt images */ +bootm_headers_t images; /* pointers to os/initrd/fdt images */ /* Allow for arch specific config before we boot */ void __arch_preboot_os(void) -- 1.7.4.1