Compare commits

...

2 Commits

Author SHA1 Message Date
morrownr 963666429f improve Fedora secure boot info 2023-04-09 11:55:55 -05:00
morrownr 81da785e6b improve secure boot info 2023-04-09 11:21:04 -05:00
2 changed files with 8 additions and 6 deletions

View File

@ -77,7 +77,7 @@ be provided via PR or message in Issues.
- [Armbian](https://www.armbian.com/) (kernel 5.15) (Rock 4 SE (Rock 4b image with xfce))
- [Debian](https://www.debian.org/) (kernels 5.10 and 5.15)
- [Debian](https://www.debian.org/) (kernels 5.10, 5.15 and 6.1)
- [Fedora](https://getfedora.org) (kernel 6.0)
@ -246,13 +246,13 @@ environment for your system. General guidance follows.
Development Environment Requirements: (package names may vary by distro)
- Mandatory: `gcc` `make` `bc` `kernel-headers` `build-essential` `git`
- Highly recommended: `dkms` `rfkill` `iw` `ip`
- Mandatory if Secure Boot is active: `openssl` `mokutil`
- Mandatory packages: `gcc` `make` `bc` `kernel-headers` `build-essential` `git`
- Highly recommended packages: `dkms` `rfkill` `iw` `ip`
- Mandatory packages if Secure Boot is active: `openssl` `sign-file` `mokutil`
Note: The below options should take care of the mandatory and highly recommended
requirements. If Secure Boot is active on your system, please also install the
mandatory packages for Secure Boot.
mandatory packages for Secure Boot as shown above.
- Option for Armbian (arm64)
@ -280,6 +280,8 @@ sudo apt install -y build-essential dkms git iw
- Option for Fedora
Note: Fedora users should also install `openssl` if secure boot is active.
```
sudo dnf -y install git dkms kernel-devel
```

View File

@ -250,7 +250,7 @@ int rtw_bw_mode = CONFIG_RTW_CUSTOMIZE_BWMODE;
int rtw_bw_mode = 0x21;
#endif
int rtw_ampdu_enable = 1;/* for enable tx_ampdu , */ /* 0: disable, 0x1:enable */
int rtw_rx_stbc = 1;/* 0: disable, bit(0):enable 2.4g, bit(1):enable 5g, default is set to enable 2.4GHZ for IOT issue with bufflao's AP at 5GHZ */
int rtw_rx_stbc = 3;/* 0: disable, bit(0):enable 2.4g, bit(1):enable 5g, default is set to enable 2.4GHZ for IOT issue with bufflao's AP at 5GHZ */
#if (defined(CONFIG_RTL8814A) || defined(CONFIG_RTL8814B) || defined(CONFIG_RTL8822B) || defined(CONFIG_RTL8822C)) && defined(CONFIG_PCI_HCI)
int rtw_rx_ampdu_amsdu = 2;/* 0: disabled, 1:enabled, 2:auto . There is an IOT issu with DLINK DIR-629 when the flag turn on */
#elif ((defined(CONFIG_RTL8822B) || defined(CONFIG_RTL8822C)) && defined(CONFIG_SDIO_HCI))