Skip to content
Snippets Groups Projects
Forked from Reform / reform-boundary-uboot
Source project has a limited visibility.
  • Christian Eggers's avatar
    9c89614d
    common: Remove invalid endianess conversion · 9c89614d
    Christian Eggers authored
    
    do_bootm_standanlone() calls ntohl(images->ep) which is wrong because
    endianess conversion has already been done:
    
    do_bootm()
    \-do_bootm_states()
      +-bootm_find_os()
      | \-images.ep = image_get_ep();
      |   \-uimage_to_cpu(hdr->ih_ep);
      \-boot_selected_os()
        \-do_bootm_standanlone()
    
    Without this conversion the code works correctly at least on AT91SAM9G45.
    On big endian systems there should be no difference after applying this
    patch because uimage_to_cpu(x) and ntohl(x) both expand to 'x'.
    
    Signed-off-by: default avatarChristian Eggers <ceggers@gmx.de>
    9c89614d
    History
    common: Remove invalid endianess conversion
    Christian Eggers authored
    
    do_bootm_standanlone() calls ntohl(images->ep) which is wrong because
    endianess conversion has already been done:
    
    do_bootm()
    \-do_bootm_states()
      +-bootm_find_os()
      | \-images.ep = image_get_ep();
      |   \-uimage_to_cpu(hdr->ih_ep);
      \-boot_selected_os()
        \-do_bootm_standanlone()
    
    Without this conversion the code works correctly at least on AT91SAM9G45.
    On big endian systems there should be no difference after applying this
    patch because uimage_to_cpu(x) and ntohl(x) both expand to 'x'.
    
    Signed-off-by: default avatarChristian Eggers <ceggers@gmx.de>