Remove the tail spaces from all files except Documentation

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao
2023-02-26 02:14:11 +08:00
committed by Brennan Ashton
parent 528dce4f7f
commit 2c5f653bfd
163 changed files with 634 additions and 651 deletions
+3 -3
View File
@@ -140,7 +140,7 @@ RUN cd renesas-tools/source/binutils && \
chmod +x ./configure ./mkinstalldirs && \
mkdir -p /tools/renesas-tools/build/binutils && cd /tools/renesas-tools/build/binutils && \
/tools/renesas-tools/source/binutils/configure --target=rx-elf --prefix=/tools/renesas-toolchain/rx-elf-gcc --disable-werror &&\
make && make install
make && make install
ENV PATH="/tools/renesas-toolchain/rx-elf-gcc/bin:$PATH"
# Install gcc
@@ -153,14 +153,14 @@ RUN cd renesas-tools/source/gcc && \
/tools/renesas-tools/source/gcc/configure --target=rx-elf --prefix=/tools/renesas-toolchain/rx-elf-gcc \
--disable-shared --disable-multilib --disable-libssp --disable-libstdcxx-pch --disable-werror --enable-lto \
--enable-gold --with-pkgversion=GCC_Build_1.02 --with-newlib --enable-languages=c && \
make && make install
make && make install
ENV PATH="/tools/renesas-toolchain/rx-elf-gcc/bin:$PATH"
# Install newlib
RUN cd renesas-tools/source/newlib && \
chmod +x ./configure && \
mkdir -p /tools/renesas-tools/build/newlib && cd /tools/renesas-tools/build/newlib && \
/tools/renesas-tools/source/newlib/configure --target=rx-elf --prefix=/tools/renesas-toolchain/rx-elf-gcc && \
/tools/renesas-tools/source/newlib/configure --target=rx-elf --prefix=/tools/renesas-toolchain/rx-elf-gcc && \
make && make install
RUN cd /tools/renesas-tools/build/gcc && \
make && make install
+1 -1
View File
@@ -37,7 +37,7 @@
/x86_64/intel64/qemu-intel64/configs/nsh
# The gcc 11.2 toolcain for MACOS maybe fail when compile
# The gcc 11.2 toolcain for MACOS maybe fail when compile
# with float, disable the cibuild check for MACOS
# it will be enbaled while new toolchain release
+2 -2
View File
@@ -8,9 +8,9 @@ rem this work for additional information regarding copyright ownership. The
rem ASF licenses this file to you under the Apache License, Version 2.0 (the
rem "License"); you may not use this file except in compliance with the
rem License. You may obtain a copy of the License at
rem
rem
rem http://www.apache.org/licenses/LICENSE-2.0
rem
rem
rem Unless required by applicable law or agreed to in writing, software
rem distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
rem WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+1 -1
View File
@@ -17,7 +17,7 @@ Steps 2 and 3 are based on heuristics. The attributions may not match the regula
used so there may be misdetections. Authors on headers are easier to detect. In fact, this will
pick up various false positives (non-author strings) which will have to be ignored by the user.
All of these authorship information is aggregated and in a final step, the names are used
All of these authorship information is aggregated and in a final step, the names are used
to check for ICLAs, based on the ICLA databases (see below), which need to be manually downloaded.
If a given author name is not matched, their email searched for in the `author_mappings.json` file,
which is a dictionary of email to real name. This allows to handle users with alternative email
+3 -3
View File
@@ -19,8 +19,8 @@
#
############################################################################
# We define a replacement for the quote character (")
# since we cannot escape quote characters found inside
# We define a replacement for the quote character (")
# since we cannot escape quote characters found inside
# the commit message
Q='^@^'
@@ -30,7 +30,7 @@ function getlog
(echo -n '['
git --no-pager log --follow --simplify-merges \
--pretty=format:'{ '$Q'commit'$Q': '$Q'%H'$Q', '$Q'author'$Q': '$Q'%aN'$Q', '$Q'author-email'$Q': '$Q'%aE'$Q', '$Q'date'$Q': '$Q'%ad'$Q', '$Q'committer'$Q': '$Q'%cn'$Q', '$Q'committer-email'$Q': '$Q'%ce'$Q', '$Q'message'$Q': '$Q'%s'$Q', '$Q'body'$Q': '$Q'%b'$Q', '$Q'signed'$Q': '$Q'%G?'$Q', '$Q'signer'$Q': '$Q'%GS'$Q', '$Q'key'$Q': '$Q'%GK'$Q' },' -- "$1"
echo -n ']') |
echo -n ']') |
sed -r 's|\\|\\\\|g' | # escape backquotes
sed -r 's|"|\\"|g' | # replace quotes with escaped quotes
tr '\r\n' ' ' | # replace newlines with spaces (otherwise strings) are broken
+5 -5
View File
@@ -79,15 +79,15 @@ Info : stm32f4x.cpu: hardware has 6 breakpoints, 4 watchpoints
Info : Listening on port 3333 for gdb connections
Info : accepting 'tcl' connection on tcp/6666
invalid command name "ocd_mdw"
0x20000000: 000000ff
0x20000000: 000000ff
0x20000000: 000000ff
0x20000000: 000000ff
0x20000004: 7216a318
0x20000004: 7216a318
0x2000000c: 994b5b1b
0x2000000c: 994b5b1b
0x2000000c: 994b5b1b
0x2000000c: 994b5b1b
0x2000000c: 994b5b1b
...
+1 -1
View File
@@ -220,7 +220,7 @@ function compressartifacts {
pushd $target_path >/dev/null
tar zcf ${target_name}.tar.gz ${target_name}
rm -rf ${target_name}
rm -rf ${target_name}
popd >/dev/null
}