Skip to content

Commit 86c3df1

Browse files
committed
Linux bandwidth testing
1 parent b33bd77 commit 86c3df1

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

linux/buildroot/board/mlogv32/busybox.config

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#
22
# Automatically generated make config: don't edit
33
# Busybox version: 1.37.0
4-
# Tue Jul 22 20:29:44 2025
4+
# Wed Jul 23 06:04:40 2025
55
#
66
CONFIG_HAVE_DOT_CONFIG=y
77

@@ -240,7 +240,7 @@ CONFIG_FEATURE_DATE_ISOFMT=y
240240
CONFIG_FEATURE_DATE_COMPAT=y
241241
CONFIG_DD=y
242242
CONFIG_FEATURE_DD_SIGNAL_HANDLING=y
243-
# CONFIG_FEATURE_DD_THIRD_STATUS_LINE is not set
243+
CONFIG_FEATURE_DD_THIRD_STATUS_LINE=y
244244
CONFIG_FEATURE_DD_IBS_OBS=y
245245
CONFIG_FEATURE_DD_STATUS=y
246246
CONFIG_DF=y
@@ -950,11 +950,11 @@ CONFIG_FEATURE_IP_NEIGH=y
950950
CONFIG_NAMEIF=y
951951
# CONFIG_FEATURE_NAMEIF_EXTENDED is not set
952952
# CONFIG_NBDCLIENT is not set
953-
# CONFIG_NC is not set
954-
# CONFIG_NETCAT is not set
955-
# CONFIG_NC_SERVER is not set
956-
# CONFIG_NC_EXTRA is not set
957-
# CONFIG_NC_110_COMPAT is not set
953+
CONFIG_NC=y
954+
CONFIG_NETCAT=y
955+
CONFIG_NC_SERVER=y
956+
CONFIG_NC_EXTRA=y
957+
CONFIG_NC_110_COMPAT=y
958958
CONFIG_NETSTAT=y
959959
# CONFIG_FEATURE_NETSTAT_WIDE is not set
960960
# CONFIG_FEATURE_NETSTAT_PRG is not set

linux/buildroot/board/mlogv32/overlay/etc/ppp/options

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
ipcp-accept-local
33
noauth
44
local
5-
xonxoff
5+
asyncmap 0
66
defaultroute
77
usepeerdns

linux/buildroot/configs/mlogv32_defconfig

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ BR2_LINUX_KERNEL_EXT_MLOGV32_DRIVERS=y
2525
BR2_PACKAGE_BUSYBOX_CONFIG="$(BR2_EXTERNAL_MLOGV32_PATH)/board/mlogv32/busybox.config"
2626
BR2_PACKAGE_CA_CERTIFICATES=y
2727
BR2_PACKAGE_READLINE=y
28+
BR2_PACKAGE_IPERF3=y
2829
BR2_PACKAGE_OPENRESOLV=y
2930
BR2_PACKAGE_PPPD=y
3031
BR2_TARGET_ROOTFS_CRAMFS=y

linux/buildroot/opensbi/platform/mlogv32/platform.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,10 @@ static void mlogv32_prompt_get_bootargs(void* fdt) {
174174

175175
sbi_putc(ch);
176176

177-
if (ch == '\r' || ch == '\n') {
177+
if (ch == '\r') {
178+
sbi_putc('\n');
179+
break;
180+
} else if (ch == '\n') {
178181
break;
179182
}
180183

linux/host_ppp_options

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ proxyarp
1010
ktune
1111
noauth
1212
nocrtscts
13-
xonxoff
14-
passive
13+
asyncmap 0
14+
silent
1515
socket 127.0.0.1:5000
1616
connect "echo '{\"type\":\"serial\",\"device\":\"uart1\"}'"

0 commit comments

Comments
 (0)