Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change the address of ip #163

Merged
merged 1 commit into from
Dec 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions ramdisk/overlay/ap/etc/init.d/S60apveth
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ start() {
printf "set ap veth: "
ifconfig veth0 up

sleep 15
ip=$(devmem 0x1a1900044)
ip=$(devmem 0x1efa100044)

ip1=$(( (ip >> 24) & 0xFF ))
ip2=$(( (ip >> 16) & 0xFF ))
Expand Down
3 changes: 1 addition & 2 deletions ramdisk/overlay/rp/etc/init.d/S60rpveth
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ start() {
printf "set rp veth: "
ifconfig veth0 up

sleep 15
ip=$(devmem 0x1a1800044)
ip=$(devmem 0x1efa000044)

ip1=$(( (ip >> 24) & 0xFF ))
ip2=$(( (ip >> 16) & 0xFF ))
Expand Down
2 changes: 1 addition & 1 deletion scripts/envsetup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ function build_rv_pcie_zsbl()
local err

pushd $RV_ZSBL_SRC_DIR
make CROSS_COMPILE=$RISCV64_LINUX_CROSS_COMPILE O=$RV_ZSBL_BUILD_DIR ARCH=riscv bm1690_pcie_defconfig
make CROSS_COMPILE=$RISCV64_LINUX_CROSS_COMPILE O=$RV_ZSBL_BUILD_DIR ARCH=riscv sg2044_defconfig
err=$?
popd

Expand Down
Loading