[U-Boot] [PATCH v2 1/2] tools: .gitignore: Sort in alphabetical order

These are currently out of alphabetical order.
Signed-off-by: Bin Meng bmeng.cn@gmail.com ---
Changes in v2: None
tools/.gitignore | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-)
diff --git a/tools/.gitignore b/tools/.gitignore index ac0c979..6a487d2 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -1,31 +1,30 @@ /atmel_pmecc_params /bin2header /bmp_logo +/common/ +/dumpimage +/easylogo/easylogo /envcrc /fdtgrep /fit_check_sign /fit_info +/gdb/gdbcont +/gdb/gdbsend /gen_eth_addr /gen_ethaddr_crc /ifdtool /img2srec /kwboot -/dumpimage +/lib/ /mips-relocs /mkenvimage -/mkimage /mkexynosspl -/mxsboot +/mkimage /mksunxiboot -/sunxi-spl-image-builder +/mxsboot /ncb /proftool /relocate-rela +/sunxi-spl-image-builder /ubsha1 /xway-swap-bytes -/easylogo/easylogo -/gdb/gdbcont -/gdb/gdbsend - -/lib/ -/common/

Some files are generated during libfdt build. Ignore them.
This was wrongly put in the .gitignore in the root directory before. Now let's remove entries there and put them in the right place.
Fixes: 34e2c285 ("gitignore: add intermediates from libfdt build") Signed-off-by: Bin Meng bmeng.cn@gmail.com
---
Changes in v2: - remove commit 34e2c285 did
.gitignore | 8 -------- tools/.gitignore | 4 ++++ 2 files changed, 4 insertions(+), 8 deletions(-)
diff --git a/.gitignore b/.gitignore index f6f5dae..29757aa 100644 --- a/.gitignore +++ b/.gitignore @@ -57,14 +57,6 @@ fit-dtb.blob /include/config/ /include/generated/
-# Since "ee95d10 fdt: Build the new python libfdt module", a number of -# build artifacts and intermediated from the python libfdt module are -# installed into the /tools directory. -/tools/_libfdt.so -/tools/libfdt.py -/tools/libfdt.pyc -/tools/libfdt_wrap.c - # stgit generated dirs patches-* .stgit-edit.txt diff --git a/tools/.gitignore b/tools/.gitignore index 6a487d2..5293d44 100644 --- a/tools/.gitignore +++ b/tools/.gitignore @@ -1,3 +1,4 @@ +/_libfdt.so /atmel_pmecc_params /bin2header /bmp_logo @@ -16,6 +17,9 @@ /img2srec /kwboot /lib/ +/libfdt.py +/libfdt.pyc +/libfdt_wrap.c /mips-relocs /mkenvimage /mkexynosspl

On Tue, Sep 05, 2017 at 10:37:45PM -0700, Bin Meng wrote:
Some files are generated during libfdt build. Ignore them.
This was wrongly put in the .gitignore in the root directory before. Now let's remove entries there and put them in the right place.
Fixes: 34e2c285 ("gitignore: add intermediates from libfdt build") Signed-off-by: Bin Meng bmeng.cn@gmail.com
Applied to u-boot/master, thanks!

On Tue, Sep 05, 2017 at 10:37:44PM -0700, Bin Meng wrote:
These are currently out of alphabetical order.
Signed-off-by: Bin Meng bmeng.cn@gmail.com
Applied to u-boot/master, thanks!
participants (2)
-
Bin Meng
-
Tom Rini