-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related to #54 Add `clk_ignore_unused` to the `CONFIG_CMDLINE` parameter in `mpfs_cmdline.cfg` and `mpfs_amp_cmdline.cfg` to prevent unused clocks from being disabled. Add `ethtool` and `iperf3` to the `IMAGE_INSTALL` list in `mpfs-dev-cli.bb` to enable network interface configuration and network performance testing. Add `CONFIG_NET_RX_BUSY_POLL=y` to the kernel configuration in `mpfs-linux.bb` to enable busy polling for network receive. Signed-off-by: Vishwanath Martur <[email protected]>
- Loading branch information
1 parent
3d26e8d
commit a8ddec7
Showing
3 changed files
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -74,6 +74,7 @@ IMAGE_INSTALL = "\ | |
dtc \ | ||
cmake \ | ||
kernel-modules kernel-dev \ | ||
ethtool \ | ||
iperf3 \ | ||
${CORE_IMAGE_EXTRA_INSTALL} \ | ||
" | ||
|
2 changes: 1 addition & 1 deletion
2
meta-polarfire-soc-bsp/recipes-kernel/linux/files/icicle-kit/mpfs_cmdline.cfg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
CONFIG_CMDLINE_BOOL=y | ||
CONFIG_CMDLINE="earlycon=sbi root=/dev/mmcblk0p3 rootwait uio_pdrv_genirq.of_id=generic-uio" | ||
CONFIG_CMDLINE="earlycon=sbi root=/dev/mmcblk0p3 rootwait uio_pdrv_genirq.of_id=generic-uio clk_ignore_unused" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,3 +42,6 @@ do_deploy:append() { | |
|
||
addtask deploy after do_install | ||
|
||
KERNEL_FEATURES:append = " \ | ||
CONFIG_NET_RX_BUSY_POLL=y \ | ||
" |