Changeset 96e0748d in mainline for boot/arch/arm32/loader/main.h


Ignore:
Timestamp:
2009-02-17T22:47:27Z (15 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
f89979b
Parents:
e662a5f
Message:

make arch_pre_main optional, don't force any specific prototype
simplify boot process
mips32: detect number of configured CPUs in msim

File:
1 edited

Legend:

Unmodified
Added
Removed
  • boot/arch/arm32/loader/main.h

    re662a5f r96e0748d  
    3333/** @file
    3434 *  @brief Boot related declarations.
    35  */ 
     35 */
    3636
    3737
     
    3939#define BOOT_arm32_MAIN_H
    4040
    41 
    42 /** Aligns to the nearest higher address.
    43  *
    44  * @param addr  Address or number to be aligned.
    45  * @param align Size of alignment, must be power of 2.
    46  */
    47 #define ALIGN_UP(addr, align) (((addr) + ((align) - 1)) & ~((align) - 1))
    4841
    4942/** Maximum number of tasks in the #bootinfo_t struct. */
     
    7568/** @}
    7669 */
    77 
Note: See TracChangeset for help on using the changeset viewer.