public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 3/5] image: add support for Android's boot image format
Date: Sun, 13 Apr 2014 18:55:34 +0200	[thread overview]
Message-ID: <201404131855.34700.marex@denx.de> (raw)
In-Reply-To: <CAL_JsqK2Y-SZHHHVSOCe6ocDAPN+4Rcoiw__MifPM=erjoZFTQ@mail.gmail.com>

On Saturday, April 12, 2014 at 11:54:10 PM, Rob Herring wrote:
> On Fri, Apr 11, 2014 at 4:44 PM, Marek Vasut <marex@denx.de> wrote:
> > On Thursday, April 10, 2014 at 09:18:05 PM, Rob Herring wrote:
> >> From: Sebastian Siewior <bigeasy@linutronix.de>
> >> 
> >> This patch adds support for the Android boot-image format. The header
> >> file is from the Android project and got slightly alterted so the struct
> >> + its defines are not generic but have something like a namespace. The
> >> header file is from bootloader/legacy/include/boot/bootimg.h. The
> >> header parsing has been written from scratch and I looked at
> >> bootloader/legacy/usbloader/usbloader.c for some details.
> >> The image contains the physical address (load address) of the kernel and
> >> ramdisk. This address is considered only for the kernel image.
> >> The "second image" is currently ignored. I haven't found anything that
> >> is creating this.
> > 
> > Can you please elaborate on those last two sentences ?
> 
> The android header has 3 images: kernel, ramdisk and "second". I think
> this is for secondary bootloader, but I'll have to investigate.

Viva hardcoded b/s :'-(

> >> v3 (Rob Herring):
> >> This is based on http://patchwork.ozlabs.org/patch/126797/ with the
> >> following changes:
> >> - Rebased to current mainline
> >> - Moved android image handling to separate functions in
> >> 
> >>   common/image-android.c
> >> 
> >> - s/u8/char/ in header to fix string function warnings
> >> - Use SPDX identifiers for licenses
> >> 
> >> - Cleaned-up file source information:
> >>   android_image.h is from file include/boot/bootimg.h in repository:
> >>   https://android.googlesource.com/platform/bootable/bootloader/legacy
> >>   The git commit hash is 4205b865141ff2e255fe1d3bd16de18e217ef06a
> >>   usbloader.c would be from the same commit, but it does not appear
> >>   to have been used for any actual code.
> > 
> > [...]
> > 
> >> @@ -293,7 +306,7 @@ static int bootm_find_os(cmd_tbl_t *cmdtp, int flag,
> >> int argc, return 1;
> >> 
> >>               }
> >>  
> >>  #endif
> >> 
> >> -     } else {
> >> +     } else if (images.ep == ~0UL) {
> > 
> > I don't find this really portable. While it's unlikely the kernel will
> > have the EP here, don't we have a better solution than using special
> > value?
> 
> This is to address Wolfgang's prior comments about moving setting of
> images.ep into the switch statement above. Do you like the previous
> version better?

I think I might be missing that part of the discussion. My point is just that 
you might rather have a separate variable to detect error instead of having a 
special value like this.

Does my rant make sense to you please ?

> > [...]
> > 
> >> @@ -949,7 +951,15 @@ int boot_get_ramdisk(int argc, char * const argv[],
> >> bootm_headers_t *images, (ulong)images->legacy_hdr_os);
> >> 
> >>               image_multi_getimg(images->legacy_hdr_os, 1, &rd_data,
> >>               &rd_len);
> >> 
> >> -     } else {
> >> +     }
> >> +#ifdef CONFIG_ANDROID_BOOT_IMAGE
> >> +     else if ((genimg_get_format(images) == IMAGE_FORMAT_ANDROID) &&
> >> +              (!andriod_image_get_ramdisk((void *)images->os.start,
> > 
> > andriod_image_get_ramdisk() ? There is a typo in the function name, did
> > you actually ever even compile this patchset please ?
> > [...]
> 
> Of course it compiles as the same typo is everywhere for this
> function... :) I've compiled and run this (although I have not tested
> with a ramdisk).

Okay, thanks for clearing this up (and fixing this in v4)!

  reply	other threads:[~2014-04-13 16:55 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-04-10 19:18 [U-Boot] [PATCH v3 0/5] Android Fastboot support Rob Herring
2014-04-10 19:18 ` [U-Boot] [PATCH v3 1/5] common: introduce maximum load size Rob Herring
2014-04-11 14:46   ` Tom Rini
2014-04-15 12:55   ` Lukasz Majewski
2014-04-15 21:59   ` Wolfgang Denk
2014-04-15 23:54     ` Rob Herring
2014-04-16  7:27       ` Wolfgang Denk
2014-04-10 19:18 ` [U-Boot] [PATCH v3 2/5] usb: handle NULL table in usb_gadget_get_string Rob Herring
2014-04-11 14:46   ` Tom Rini
2014-04-11 21:39   ` Marek Vasut
2014-04-15 13:00   ` Lukasz Majewski
2014-04-10 19:18 ` [U-Boot] [PATCH v3 3/5] image: add support for Android's boot image format Rob Herring
2014-04-11 14:46   ` Tom Rini
2014-04-11 21:44   ` Marek Vasut
2014-04-12 21:54     ` Rob Herring
2014-04-13 16:55       ` Marek Vasut [this message]
2014-04-15 13:59   ` Lukasz Majewski
2014-04-10 19:18 ` [U-Boot] [PATCH v3 4/5] usb/gadget: add the fastboot gadget Rob Herring
2014-04-11  7:14   ` Bo Shen
2014-04-11 12:55     ` Rob Herring
2014-04-11 22:13       ` Marek Vasut
2014-04-14  6:51         ` Lukasz Majewski
2014-04-14  2:28       ` Bo Shen
2014-04-11  7:30   ` Lukasz Majewski
2014-04-11 14:46   ` Tom Rini
2014-04-11 22:08   ` Marek Vasut
2014-04-15 15:41   ` Lukasz Majewski
2014-04-15 16:01     ` Rob Herring
2014-04-10 19:18 ` [U-Boot] [PATCH v3 5/5] arm: beagle: enable Android fastboot support Rob Herring
2014-04-11 14:46   ` Tom Rini
2014-04-10 19:18 ` [U-Boot] [PATCH 5/5] beagle: " Rob Herring
2014-04-10 19:42   ` Rob Herring
2014-04-11  7:04 ` [U-Boot] [PATCH v3 0/5] Android Fastboot support Sebastian Andrzej Siewior
2014-04-11 14:15   ` Tom Rini
2014-04-11 14:45 ` Tom Rini
2014-04-14 12:19   ` Rob Herring
2014-04-18 13:54 ` [U-Boot] [PATCH v4 " Rob Herring
2014-04-18 13:54   ` [U-Boot] [PATCH v4 1/5] usb: handle NULL table in usb_gadget_get_string Rob Herring
2014-04-18 13:54   ` [U-Boot] [PATCH v4 2/5] image: add support for Android's boot image format Rob Herring
2014-04-18 13:54   ` [U-Boot] [PATCH v4 3/5] usb: musb: fill in usb_gadget_unregister_driver Rob Herring
2014-04-23  9:46     ` Lukasz Majewski
2014-04-18 13:54   ` [U-Boot] [PATCH v4 4/5] usb/gadget: add the fastboot gadget Rob Herring
2014-04-23 11:02     ` Lukasz Majewski
2014-04-23 12:25       ` Marek Vasut
2014-04-24 15:02       ` Rob Herring
2014-04-25  5:26         ` Lukasz Majewski
2014-04-25 13:30           ` Rob Herring
2014-04-28  7:00             ` Lukasz Majewski
2014-04-18 13:54   ` [U-Boot] [PATCH v4 5/5] arm: beagle: enable Android fastboot support Rob Herring
2014-04-18 16:14   ` [U-Boot] [PATCH v4 0/5] Android Fastboot support Wolfgang Denk
2014-04-21 15:13     ` Marek Vasut
2014-04-23 14:36       ` Rob Herring
2014-04-23 16:57         ` Marek Vasut
2014-05-05 20:08   ` [U-Boot] [PATCH v5 0/3] " Rob Herring
2014-05-05 20:08     ` [U-Boot] [PATCH v5 1/3] image: add support for Android's boot image format Rob Herring
2014-05-05 20:08     ` [U-Boot] [PATCH v5 2/3] usb/gadget: add the fastboot gadget Rob Herring
2014-05-05 20:08     ` [U-Boot] [PATCH v5 3/3] arm: beagle: enable Android fastboot support Rob Herring
2014-05-05 20:21     ` [U-Boot] [PATCH v5 0/3] Android Fastboot support Marek Vasut
2014-05-07  6:35     ` Lukasz Majewski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=201404131855.34700.marex@denx.de \
    --to=marex@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox