From 56c65b08e0c4439cbe1dfe7bbcbc599c5fa13397 Mon Sep 17 00:00:00 2001 From: Bohan Yang Date: Tue, 16 Feb 2021 14:27:37 +0000 Subject: [PATCH] Change --eth to --ethx --- README.md | 2 +- debi.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 728dcbb..18bd242 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ To **revert** all changes, run * `--safe-upgrade` **(Default)** `apt upgrade --with-new-pkgs`. [See](https://salsa.debian.org/installer-team/pkgsel/-/blob/master/debian/postinst) * `--full-upgrade` `apt dist-upgrade` * `--no-upgrade` - * `--eth` Disable *Consistent Network Device Naming* to get interface names like *ethX* back + * `--ethx` Disable *Consistent Network Device Naming* to get interface names like *ethX* back * `--bbr` Enable TCP BBR congestion control * `--hold` Don't reboot or power off after installation * `--power-off` Power off after installation rather than reboot diff --git a/debi.sh b/debi.sh index be977bd..cc5ae96 100755 --- a/debi.sh +++ b/debi.sh @@ -221,7 +221,7 @@ while [ $# -gt 0 ]; do --full-upgrade) upgrade=full-upgrade ;; - --eth) + --ethx) kernel_params="$kernel_params net.ifnames=0 biosdevname=0" ;; --bbr)