Changeset f941347 in mainline for arch/ppc32/loader/main.h


Ignore:
Timestamp:
2006-03-17T12:46:35Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
7dcde32
Parents:
543c31f
Message:

relocate boot loader structures if needed
(allowing to boot on stupid OFW implementations)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ppc32/loader/main.h

    r543c31f rf941347  
    3232#include "ofw.h"
    3333
     34/** Align to the nearest higher address.
     35 *
     36 * @param addr  Address or size to be aligned.
     37 * @param align Size of alignment, must be power of 2.
     38 */
     39#define ALIGN_UP(addr, align) (((addr) + ((align) - 1)) & ~((align) - 1))
     40
    3441extern int _binary_____________kernel_kernel_bin_start;
    3542extern int _binary_____________kernel_kernel_bin_end;
Note: See TracChangeset for help on using the changeset viewer.