summaryrefslogtreecommitdiffstats
path: root/arch/arm/lib/armlinux.c
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-12-06 10:33:05 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2014-01-06 14:25:06 +0100
commit8e3ddc13eb8239177ed20f119e3a3d02518b941d (patch)
tree65662dffd9756fb4fe4a4245757c6567a1cbec58 /arch/arm/lib/armlinux.c
parentcee2a60c56be41047a5640e5cbdce43de52c0ee4 (diff)
downloadbarebox-8e3ddc13eb8239177ed20f119e3a3d02518b941d.tar.gz
barebox-8e3ddc13eb8239177ed20f119e3a3d02518b941d.tar.xz
ARM: boot barebox with kernel calling convention
Start a 2nd stage barebox with the Linux Kernel calling convention. Right now barebox does not interpret ATAGs or devicetree passed to it, but it doesn't hurt to pass parameters so that future bareboxes can use them. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'arch/arm/lib/armlinux.c')
-rw-r--r--arch/arm/lib/armlinux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/lib/armlinux.c b/arch/arm/lib/armlinux.c
index d83c6a2e74..bc286200c0 100644
--- a/arch/arm/lib/armlinux.c
+++ b/arch/arm/lib/armlinux.c
@@ -261,7 +261,7 @@ void start_linux(void *adr, int swap, unsigned long initrd_address,
int architecture;
if (oftree) {
- printf("booting Linux kernel with devicetree\n");
+ printf("booting kernel with devicetree\n");
params = oftree;
} else {
setup_tags(initrd_address, initrd_size, swap);