nyan*: Fix unexpected symbol (CR) when converting DOS-formatted BCT config.
There are some unexpected symbol at the end of each line in the generated .inc file when the config file is DOS format (CR+LF). Modify cfg2inc to support DOS format cfg file. BUG=chrome-os-partner:27614 TEST=sudo cfg2inc.sh XXX.cfg # make a expected inc file BRANCH=nyan Signed-off-by: Neil Chen <neilc@nvidia.com> Change-Id: I68b0f4b3805fcb5a6b633653c95afbafcb880a93 Reviewed-on: https://chromium-review.googlesource.com/192697 Tested-by: Neil Chen <neilc@nvidia.com> Reviewed-by: Hung-Te Lin <hungte@chromium.org> Commit-Queue: Neil Chen <neilc@nvidia.com>
This commit is contained in:
parent
2ad598b8bd
commit
38e90ab0d9
1 changed files with 1 additions and 1 deletions
|
|
@ -23,7 +23,7 @@ bct_cfg2inc() {
|
|||
echo "{ /* generated from ${in_file}; do not edit. */" >"${out_file}"
|
||||
# Note currently we can only handle DDR3 type memory, even in C
|
||||
# implementation.
|
||||
sed "/^#.*$/d; s/^SDRAM.0./ /; s/;$/,/;" \
|
||||
sed "/^#.*$/d; s/^SDRAM.0./ /; s/\r$//; s/;$/,/;" \
|
||||
"${in_file}" >> "${out_file}"
|
||||
echo "}," >>"${out_file}"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue