we are deviating away from defconfig

This commit is contained in:
Pratham Patel 2023-10-15 22:36:58 +05:30
parent 674d848065
commit 81eeed241c
No known key found for this signature in database
1 changed files with 1 additions and 11 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
./scripts/config --file .config --enable R8169
./scripts/config --file .config --module R8169
# Q: What requires this option to be enabled?
# A: Enabling this option adds support for the Realtek RTL8125 2.5GbE Controller
# that is present on the Radxa Rock 5 Model B SBC, connected via the PCIe bus.
@ -11,13 +11,3 @@
# Kernel driver in use: r8169
# Kernel modules: r8169
# ```
#
# Q: Why wasn't this option enabled by `make defconfig`?
# A: There are two reasons for this:
# 1. None of the symbols that are enabled by the defconfig (built-in or
# otherwise)--that are needed by CONFIG_R8169--"select" this option. The
# dependencies are already enabled (built-in or otherwise). So all that
# needs to be done is to enable this tristate module as a **loadable module**.
# 2. Since this Ethernet controller is connected via the PCIe bus and is not
# the Ethernet PHY offered by the RK3588 SoC itself, it is not selected
# by 'CONFIG_ARCH_ROCKCHIP' either.