Skip to content
Snippets Groups Projects
Select Git revision
  • d3cf9eb2d87c8961408ec5aa6ebe0c54f2c13724
  • master default protected
  • v2020.01-ktn
  • caam_hab_mx8m
  • pmic_pca9450
  • feature_swupdate
  • wip_swupdate_env
  • v2020.01-rc1
  • v2019.10
  • v2019.10-rc4
  • v2019.10-rc3
  • v2019.10-rc2
  • v2019.10-rc1
  • v2019.07
  • v2019.07-rc4
  • v2019.07-rc3
  • v2019.07-rc2
  • v2019.07-rc1
  • v2019.04
  • v2019.04-rc4
  • v2019.04-rc3
  • v2019.04-rc2
  • v2019.04-rc1
  • v2019.01
  • v2019.01-rc3
  • v2019.01-rc2
  • v2019.01-rc1
27 results

.gitignore

Blame
  • user avatar
    Sven Ebenfeld authored and Stefano Babic committed
    To being able to sign created binaries, we need to know the HAB Blocks
    for that image. Especially for the imximage type the HAB Blocks are
    only available during creation of the image. We want to preserve the
    information until we get to sign the files.
    In the verbose case we still get them printed out instead of writing
    to log files.
    
    Cc: sbabic@denx.de
    
    v2-Changes:
     - No usage of MKIMAGEOUTPUT_$(@F) macro.
     - Predefine default value /dev/null in every involved Makefile.
    
    Signed-off-by: default avatarSven Ebenfeld <sven.ebenfeld@gmail.com>
    Reviewed-by: default avatarGeorge McCollister <george.mccollister@gmail.com>
    Tested-by: default avatarGeorge McCollister <george.mccollister@gmail.com>
    1f6a6648
    History
    .gitignore 826 B
    #
    # NOTE! Don't add files that are generated in specific
    # subdirectories here. Add them in the ".gitignore" file
    # in that subdirectory instead.
    #
    # Normal rules
    #
    .*
    *.o
    *.o.*
    *.a
    *.s
    *.su
    *.mod.c
    *.i
    *.lst
    *.order
    *.elf
    *.swp
    *.bin
    *.patch
    *.cfgtmp
    
    # host programs on Cygwin
    *.exe
    
    # Build tree
    /build-*
    
    #
    # Top-level generic files
    #
    /MLO*
    /SPL*
    /System.map
    /u-boot*
    /boards.cfg
    
    #
    # git files that we don't want to ignore even it they are dot-files
    #
    !.gitignore
    !.mailmap
    
    #
    # Generated files
    #
    /LOG
    /spl/
    /tpl/
    /defconfig
    
    #
    # Generated include files
    #
    /include/config/
    /include/generated/
    
    # stgit generated dirs
    patches-*
    .stgit-edit.txt
    
    # quilt's files
    patches
    series
    
    # gdb files
    .gdb_history
    
    # cscope files
    cscope.*
    
    # tags files
    /tags
    /ctags
    /etags
    
    # gnu global files
    GPATH
    GRTAGS
    GSYMS
    GTAGS
    
    *.orig
    *~
    \#*#