diff options
author | Mark A. Greer <mgreer@mvista.com> | 2006-10-16 13:49:27 -0700 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-10-18 15:50:18 +1000 |
commit | c888554bf95a5a0a6ac3e2389c6bf1e03e9480ba (patch) | |
tree | 0bd690be6846ac378498310f9d90ae526a3028bd /arch/powerpc/boot/wrapper | |
parent | b0a779debd56514b2b5de7617a1643e5dac2d4dd (diff) | |
download | op-kernel-dev-c888554bf95a5a0a6ac3e2389c6bf1e03e9480ba.zip op-kernel-dev-c888554bf95a5a0a6ac3e2389c6bf1e03e9480ba.tar.gz |
[POWERPC] More bootwrapper reorganization
More reorganization of the bootwrapper:
- Add dtb section to zImage
- ft_init now called by platform_init
- Pack a flat dt before calling kernel
- Remove size parameter from free
- printf only calls console_ops.write it its not NULL
- Some cleanup
Signed-off-by: Mark A. Greer <mgreer@mvista.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/boot/wrapper')
-rwxr-xr-x | arch/powerpc/boot/wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/wrapper b/arch/powerpc/boot/wrapper index eab7318..b5fb1fe 100755 --- a/arch/powerpc/boot/wrapper +++ b/arch/powerpc/boot/wrapper @@ -179,11 +179,11 @@ if [ -z "$cacheit" ]; then fi if [ -n "$initrd" ]; then - addsec $tmp "$initrd" initrd + addsec $tmp "$initrd" $isection fi if [ -n "$dtb" ]; then - addsec $tmp "$dtb" dtb + addsec $tmp "$dtb" .kernel:dtb fi if [ "$platform" != "miboot" ]; then |