Skip to content

Commit

Permalink
add RET_FROM_IF_TX,RX migration
Browse files Browse the repository at this point in the history
  • Loading branch information
sksat committed Oct 26, 2023
1 parent 4383d09 commit 062aa52
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions script/migration/v4-rename-if-list.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,11 @@ find . -name "*" -not -path "*/.git/*" -type f -print0 | xargs -0 sed -i -e "s#i
## other members
echo "ret_from_if_rx -> ret_from_hal_rx"
find . -name "*" -not -path "*/.git/*" -type f -print0 | xargs -0 sed -i -e "s#ret_from_if_rx#ret_from_hal_rx#g"
find . -name "*" -not -path "*/.git/*" -type f -print0 | xargs -0 sed -i -e "s#RET_FROM_IF_RX#RET_FROM_HAL_RX#g"

echo "ret_from_if_tx -> ret_from_hal_tx"
find . -name "*" -not -path "*/.git/*" -type f -print0 | xargs -0 sed -i -e "s#ret_from_if_tx#ret_from_hal_tx#g"
find . -name "*" -not -path "*/.git/*" -type f -print0 | xargs -0 sed -i -e "s#RET_FROM_IF_TX#RET_FROM_HAL_TX#g"


## enum
Expand Down

0 comments on commit 062aa52

Please sign in to comment.