~lool/linaro-image-tools/chs-align-tests

« back to all changes in this revision

Viewing changes to linaro_media_create/boards.py

  • Committer: Loïc Minier
  • Date: 2011-03-08 15:13:56 UTC
  • mfrom: (287.1.5 linaro-image-tools)
  • Revision ID: lool@dooz.org-20110308151356-iut31o2xpe4deh7r
Merge lp:~linaro-landing-team-freescale/linaro-image-tools/mx53-loco; adds
support for i.MX53 LOCO board.

Show diffs side-by-side

added added

removed removed

Lines of Context:
411
411
    uboot_flavor = 'mx51evk'
412
412
 
413
413
 
 
414
class Mx53LoCoConfig(Mx5Config):
 
415
    uboot_flavor = 'mx53loco'
 
416
    kernel_addr = '0x70800000'
 
417
    initrd_addr = '0x71800000'
 
418
    load_addr = '0x70008000'
 
419
    kernel_suffix = 'linaro-lt-mx53'
 
420
 
 
421
 
414
422
class VexpressConfig(BoardConfig):
415
423
    uboot_flavor = 'ca9x4_ct_vxp'
416
424
    uboot_in_boot_part = True
442
450
    'ux500': Ux500Config,
443
451
    'efikamx': EfikamxConfig,
444
452
    'mx51evk': Mx51evkConfig,
 
453
    'mx53loco' : Mx53LoCoConfig,
445
454
    'overo': OveroConfig,
446
455
    }
447
456