Skip to content
This repository has been archived by the owner on May 24, 2022. It is now read-only.

Commit

Permalink
git diff syntax corrected, Updated release compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
kbhatt committed Dec 21, 2020
1 parent a0b5ce5 commit 2ca68cc
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ Default input while execution i.e. when user just presses enter without any inpu
## Release Compatibility
|Device|AOT|SAL|APSN BSP|SDE|
|---|---|---|---|---|
|BF2556X_1T<br>BF6064X_T|v1.2.0|sal_1.1.0|BF2556X-1T_BSP_9.0.0(master HEAD)<br>BF6064X_BSP_9.0.0|BF_SDE_9.1<br>BF_SDE_9.2|
|BF2556X_1T<br>BF6064X_T|v1.3.0|sal_1.1.0|bf-reference-bsp-9.2.0-BF2556_5189449.zip<br>bf-reference-bsp-9.2.0-BF6064_0ee36ac.zip|BF_SDE_9.2|
|BF2556X_1T<br>BF6064X_T|v1.2.0|sal_1.1.0|BF2556X-1T_BSP_9.0.0(master HEAD)<br>BF6064X_BSP_9.0.0(master HEAD)|BF_SDE_9.1<br>BF_SDE_9.2|



Expand Down
4 changes: 2 additions & 2 deletions bf_sde.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def prepare_bsp_pkg():
'git --git-dir {0}/.git rev-parse HEAD'.format(bsp_dev_abs))
os.chdir(bsp_dev_abs)
execute_cmd_n_get_output_2(
'git --git-dir {0}/.git diff {1} {2} \':!./platforms/apsn/\' \':!.idea/\' \':!.gitignore\' > {3}'.
'git --git-dir {0}/.git diff {1} {2} -- \':!./platforms/apsn/\' \':!.idea/\' \':!.gitignore\' > {3}'.
format(bsp_dev_abs, earliest_commit_hash, latest_commit_hash,
bsp_dev_abs + '/' + diff_file))

Expand Down Expand Up @@ -296,7 +296,7 @@ def install_switch_bsp():

os.system("autoreconf && autoconf")
os.system("chmod +x ./autogen.sh")
os.system("chmod +x ./configure")
#os.system("chmod +x ./configure")
if get_switch_model() == constants.bf2556x_1t:
execute_cmd(
"CFLAGS=-Wno-error ./configure --prefix={} --enable-thrift --with-tof-brgup-plat".format(
Expand Down
4 changes: 2 additions & 2 deletions settings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

#For quick start goto bottom and type in profile of choice under slected.

SWITCH Model: BF2556X_1T
#SWITCH Model: BF2556X_1T
#OR
#SWITCH Model: BF6064X_T
SWITCH Model: BF6064X_T

PATH_PREFIX: #Various paths used in this setting file are evaluated relative to this, Default is user home directory

Expand Down

0 comments on commit 2ca68cc

Please sign in to comment.