summaryrefslogtreecommitdiffstats
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* .gitignore: Add .bin.gen.S files found firmware/Andrey Smirnov2018-09-241-0/+1
| | | | | Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* .gitignore: sort normal pattern rules alphabeticallyMasahiro Yamada2018-06-041-15/+15
| | | | | | | | | | Follow Linux commit 1377dd3e2987 (".gitignore: sort normal pattern rules alphabetically"). This would allow us to easily catch duplicated patterns if any. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* include pyserial trunkJan Luebbe2016-01-181-0/+1
| | | | | | | The current pyserial is broken, this version contains the fix for: http://sourceforge.net/p/pyserial/bugs/166/ Signed-off-by: Jan Luebbe <jlu@pengutronix.de>
* gitignore: sync with Linux's .gitignoreMasahiro Yamada2015-02-021-9/+14
| | | | | | | | | | | | | The top .gitignore is getting close to Linux's one. I am inclined to sync it more. - Add a missing comment block - Add missing patterns that have no impact (*.o.*, *.so.dbg) - Add prefix "/" to top-level generic files - Arrange the order for easier diff Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: move "barebox_default_env*" to subdirectoryMasahiro Yamada2015-02-021-1/+0
| | | | | | | | | | | | | | | | | "barebox_default_env*" is not "Top-level generic files" because they are generated in the defaultenv/ directory since commit 7fa10256c3f4 (defaultenv: Allow multiple defaultenvironment overlays). The comment block of the top-level .gitignore says as follows: # NOTE! Don't add files that are generated in specific # subdirectories here. Add them in the ".gitignore" file # in that subdirectory instead. Let's follow this rule. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: simplify .gitignore file with pattern "/barebox*"Masahiro Yamada2015-02-021-16/+1
| | | | | | | | There is no source file prefixed "barebox" at the top directory. Generated files there can be simply ignored with "/barebox*" pattern. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: remove obsolete link method for arch specificationMasahiro Yamada2015-01-191-2/+0
| | | | | | | | The cross_arch and cross_compile links method is obsolete and not available any more, so we remove it from the .gitignore. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: remove bogus ignore patternsMasahiro Yamada2015-01-131-2/+0
| | | | | | | | | asm-offsets.h and compile.h are generated under include/generated/ directory now. The directory include/generated/ is already ignored. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: do not ignore .mailmapMasahiro Yamada2015-01-131-0/+1
| | | | | | | | Commit eb4b20d20631 (add .mailmap for proper git-shortlog output) introduced .mailmap file. It should not be ignored. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: add all.configBorislav Petkov2015-01-131-0/+3
| | | | | | | | | | | | | This is used by kbuild to load preset Kconfig options. We need to ignore it, otherwise git clean kills it. Signed-off-by: Borislav Petkov <bp@suse.de> Cc: Michal Marek <mmarek@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org> [ imported from Linux Kernel, commit 25fba9bebeb7 ] Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: Add GNU GLOBAL files to top .gitignoreJani Nikula2015-01-131-0/+6
| | | | | | | | | | Ignore GPATH, GRTAGS, GSYMS, and GTAGS generated by GNU GLOBAL. Signed-off-by: Jani Nikula <ext-jani.1.nikula@nokia.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> [ imported from Linux Kernel, commit f2ac5e78928b ] Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* .gitignore: match ncscope.outJike Song2015-01-131-0/+1
| | | | | | | | | | | | | | | | | | | | | | Sometimes I got this: $ git-status {snip} # On branch master # Untracked files: # (use "git add <file>..." to include in what will be committed) # # ncscope.out nothing added to commit but untracked files present (use "git add" to track) Fix it. Signed-off-by: Jike Song <albcamus@gmail.com> Signed-off-by: Sam Ravnborg <sam@ravnborg.org> [ imported from Linux Kernel, commit 9723c046bd59 ] Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* kbuild: do not create symbolic link include/asmMasahiro Yamada2015-01-051-1/+0
| | | | | | | | There does not exist include/asm-$(SRCARCH) any more, so no point to create a symbolic link to an empty directory. Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* scripts: gitignore: update based on MakefileAndreas Pretzsch2014-09-011-3/+0
| | | | | | | | | Create up-to-date list of hostprogs and targetprogs based on Makefile. Have this list sorted like the targets in the Makefile to ease maintenance. Also move some leftovers from root .gitignore over here. Signed-off-by: Andreas Pretzsch <apr@cn-eng.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Merge branch 'for-next/efi'Sascha Hauer2014-08-071-0/+1
|\ | | | | | | | | | | | | Conflicts: .gitignore Makefile drivers/serial/Makefile
| * Add initial EFI architecture supportSascha Hauer2014-07-161-0/+1
| | | | | | | | | | | | | | This adds support for running barebox in an EFI environment on X86 PC hardware. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | Merge branch 'for-next/doc'Sascha Hauer2014-08-071-1/+0
|\ \ | | | | | | | | | | | | Conflicts: Makefile
| * | treewide: drop Doxygen stuffAntony Pavlov2014-07-281-1/+0
| |/ | | | | | | | | | | | | | | | | | | | | | | | | Doxygen documentation is removed in the commit commit 98360be0fefd58bf27df03c47d887dd676a31d73 Author: Sascha Hauer <s.hauer@pengutronix.de> Date: Tue Jun 17 10:27:03 2014 +0200 Documentation: remove doxygen documentation Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* / ARM: add Canon A1100 ROM image generationAntony Pavlov2014-08-011-0/+1
|/ | | | | Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* doc: .gitignore generated filesHolger Schurig2014-06-271-0/+2
| | | | | Signed-off-by: Holger Schurig <holgerschurig@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* make .gitignore files visible to gitAntony Pavlov2014-06-101-0/+5
| | | | | Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Makefile.lib: add rule to built Tegra BCTsLucas Stach2014-05-151-0/+1
| | | | | Signed-off-by: Lucas Stach <dev@lynxeye.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: ignore autogenerated environment filesSascha Hauer2014-02-281-0/+2
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM: generate imx dcd.S files as *.dcd.SSascha Hauer2013-07-101-0/+2
| | | | | | | | The compiled in dcd images generate an intermediate assembly file. Instead of generating them as *.S generate them as *.dcd.S to better identify them as generated files. These are then added to .gitignore. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* gitignore: add kwb binary images to gitignore fileSebastian Hesselbarth2013-05-131-0/+2
| | | | | | | | | This adds barebox.kwb and barebox.kwbuart to the list of files to be ignored by git. Signed-off-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* ARM: zynq: add zynq fsbl checksum scriptSteffen Trumtrar2013-03-271-0/+1
| | | | | | | | | | | | The bootrom only reads an image if the correct checksum is present in the header. The calculation is pretty simple: sum over all words from 0x20 to 0x44 Two of this words are the image length. That is why the checksum can not be calculated until barebox_image_size is known. The easiest solution is a program that has to be run after make. Signed-off-by: Steffen Trumtrar <s.trumtrar@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* replace barebox* in .gitignore with individual filesSascha Hauer2012-11-141-1/+12
| | | | | | | | | | | | | | | | | | This effectively reverts: | commit f9df22b002af99532b66360e08128ea3e7e82a97 | Author: Alexander Shiyan <shc_work@mail.ru> | Date: Mon Oct 8 10:35:04 2012 +0400 | | Add more generated files to .gitignore barebox* is not limited to the toplevel directory, so this ignores all files starting with 'barebox' from which we have several we do not wish to ignore. Add barebox-flash-image to the ignore list which seemed to be the motivation for the original patch. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de> Cc: Alexander Shiyan <shc_work@mail.ru>
* Add more generated files to .gitignoreAlexander Shiyan2012-10-101-11/+1
| | | | | | | | | | | | | | This patch adds at least one more generated file to .gitignore list: shc@shc /home/git/bb_clps3 $ git status # On branch my # Untracked files: # (use "git add <file>..." to include in what will be committed) # # barebox-flash-image Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Merge branch 'for-next/omap'Sascha Hauer2012-10-031-0/+1
|\ | | | | | | | | Conflicts: Makefile
| * scripts: add tool to create image for SPI boot on AM35xxJan Luebbe2012-10-021-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Booting from SPI on an AM35xx (and possibly other TI SOCs) requires a special format: - 32 bit image size in big-endian - 32 bit load address in big-endian - binary image converted from little- to big-endian The mk-am35xx-spi-image tool converts barebox.bin to this format. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* | Makefile: add target to produce a SPL compatible uImageJan Luebbe2012-09-291-0/+1
|/ | | | | | | | | | | | | | This is mostly useful during the initial port of barebox to a new board which is supported by u-boot. It also allows starting barebox from a SRAM-based u-boot SPL. A different load address can be set like this: make barebox.uimage UIMAGE_BASE=0x80000000 Also add barebox.ubl to CLEAN_FILES. Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* scripts/mkublheader: add program to produce an UBL image headerJan Luebbe2012-07-041-0/+1
| | | | | | | | This image header is used for booting from SPI using the TI User Boot Loader (UBL). Signed-off-by: Jan Luebbe <jlu@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Deal properly with scripts/bareboxenv-targetRoberto Nibali2012-06-301-0/+1
| | | | | | | | | | | The bareboxenv-target binary is automatically created but never deleted nor is it excluded from git tracking. This patch remedies the situation by adding scripts/bareboxenv-target to .gitignnore and adjusting the list of to be deleted files of the 'clean' target in the core Makefile. Signed-off-by: Roberto Nibali <rnibali@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* S5P boot header and image generatorAlexey Galakhov2012-05-211-0/+2
| | | | | Signed-off-by: Alexey Galakhov <agalakhov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* Add compressed barebox_default_env to .gitignoreAlexander Shiyan2012-05-141-1/+1
| | | | | Signed-off-by: Alexander Shiyan <shc_work@mail.ru> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* netX: ignoring temporary netx build toolMichael Trensch2012-04-231-0/+1
| | | | | | Signed-off-by: Michael Trensch <MTrensch@gmail.com> Acked-by: Juergen Beisert <jbe@pengutronix.de> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* generate barebox.srecAntony Pavlov2011-09-131-0/+1
| | | | | Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* remove redundant .gitignore entriesBaruch Siach2010-12-131-2/+0
| | | | | | | | The ARCH and CROSS_COMPILE entries were introduced in commit cdfd8bdd, probably by mistake. Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* doc: put barebox version into documentationRobert Schwebel2010-11-151-0/+3
| | | | | | | Currently the documentation does always claim to be version 1. We add the revision plus the git version to the manual. Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
* move utsrelease.h to include/generated/ instead of include/linuxJean-Christophe PLAGNIOL-VILLARD2010-09-171-1/+0
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* move version.h to include/generated/ instead of include/linuxJean-Christophe PLAGNIOL-VILLARD2010-09-171-1/+0
| | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* gitignore: update generated link and fileJean-Christophe PLAGNIOL-VILLARD2010-09-171-2/+1
| | | | | | | include/linux/autoconf.h is now generated in include/generated include/asm-sandbox/arch does not exist anymore Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
* gitignore: ignore .orig and .patch filesJean-Christophe PLAGNIOL-VILLARD2010-08-061-0/+4
| | | | | Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* rename U-Boot-v2 project to bareboxSascha Hauer2009-12-151-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | This has been done with the following script: find -path ./.git -prune -o -type f -print0 | xargs -0 -r sed -i \ -e 's/u2boot/barebox/g' \ -e 's/U2Boot/barebox/g' \ -e 's/U-boot V2/barebox/g' \ -e 's/u-boot v2/barebox/g' \ -e 's/U-Boot V2/barebox/g' \ -e 's/U-Boot-v2/barebox/g' \ -e 's/U_BOOT/BAREBOX/g' \ -e 's/UBOOT/BAREBOX/g' \ -e 's/uboot/barebox/g' \ -e 's/u-boot/barebox/g' \ -e 's/u_boot/barebox/g' \ -e 's/U-Boot/barebox/g' \ -e 's/U-boot/barebox/g' \ -e 's/U-BOOT/barebox/g' find -path ./.git -prune -o \( -name "*u-boot*" -o -name "*uboot*" -o -name "*u_boot*" \) -print0 | \ xargs -0 -r rename 's/u[-_]?boot/barebox/' It needs some manual fixup following in the next patch Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* let linker create a link mapJuergen Beisert2009-12-101-0/+1
| | | | | Signed-off-by: Juergen Beisert <j.beisert@pengutronix.de> Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* update .gitignore files for linker scriptsSascha Hauer2009-01-211-1/+0
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* update .gitignoreSascha Hauer2008-04-041-0/+2
| | | | | Signed-off-by: Carsten Schlote <schlote@vahanus.net> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
* add emacs' temp files to .gitignoreMarc Kleine-Budde2007-11-281-0/+2
| | | | | | This patch adds emacs temporary and backup files to .gitignore. Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* added lds-y for sandboxMarc Kleine-Budde2007-10-311-0/+2
| | | | Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
* update some .gitignore filesSascha Hauer2007-10-241-0/+1
| | | | Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>