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

The latest SA6400 cannot be driven (installed through the latest RR23.11.6 boot, which already supports the 11th and 12th generation hard solutions, and can also use Sata disks). The platform architecture, Epyc7002, #354

Open
y723157510 opened this issue Nov 20, 2023 · 1 comment

Comments

@y723157510
Copy link

The latest SA6400 cannot be driven (installed through the latest RR23.11.6 boot, which already supports the 11th and 12th generation hard solutions, and can also use Sata disks). The platform architecture, Epyc7002, should be due to the fact that the kernel is 5.10. I hope to update it, because currently, only the SA6400 kernel is 5.10 in Black Group Hui, and other systems are ancestral 4.4, which cannot perfectly drive the 11th, 12th, 13th, and 14th generation hard solutions.

@y723157510
Copy link
Author

  • If you want to support S5 WOL, you have to find

    EXTRA_CFLAGS += -DRTL8152_S5_WOL

    in the Makefile. Then, remove the first character '#", if it exists.

  • For Fedora, you may have to run the following command after installing the
    driver.

    dracut -f

  • For Ubuntu, you may have to run the following command after installing the
    driver.

    sudo depmod -a

    sudo update-initramfs -u

  • Example of setting speed

    2.5G before kernel v4.10

    ethtool -s eth0 autoneg on advertise 0x802f

    2.5G for kernel v4.10 and later

    ethtool -s eth0 autoneg on advertise 0x80000000002f

    ethtool -s eth0 autoneg on advertise 0x002f (1G)

    ethtool -s eth0 autoneg on advertise 0x000f (100M full)

    ethtool -s eth0 autoneg on advertise 0x0003 (10M full)

  • Disable center tap short

    make CONFIG_CTAP_SHORT=OFF modules

  • Ring parameter

    Show Ring parameter

    ethtool -g eth0

    Changes the number of ring entries for the Rx ring.

    ethtool -G eth0 rx 100

  • Tunable parameters

    Get the current rx copybreak value in bytes.

    ethtool --get-tunable eth0 rx-copybreak

    Set the rx copybreak value in bytes.

    ethtool --set-tunable eth0 rx-copybreak 256

  • Flow control

    Queries the specified Ethernet device for pause parameter information.

    ethtool -a eth0

    Changes the pause parameters of the specified Ethernet device.

    ethtool -A eth0 rx off tx off (Disable flow control)

    ethtool -A eth0 rx on tx off (Enable flow control)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant