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

Allow cio_ignore kernel argument on s390 (bsc#1210525) #693

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions package/yast2-bootloader.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jan 25 11:18:12 UTC 2024 - Knut Anderssen <[email protected]>

- Add cio_ignore to allowed kernel options on s390 (bsc#1210525)
teclator marked this conversation as resolved.
Show resolved Hide resolved
- 5.0.4

-------------------------------------------------------------------
Wed Jan 10 23:16:39 UTC 2024 - Josef Reidinger <[email protected]>

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-bootloader.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@


Name: yast2-bootloader
Version: 5.0.3
Version: 5.0.4
Release: 0
Summary: YaST2 - Bootloader Configuration
License: GPL-2.0-or-later
Expand Down
5 changes: 3 additions & 2 deletions src/modules/BootArch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,14 @@ def main
end

# list of regexp to match kernel params that should be added
# from installation to running kernel on s390 (bsc#1086665)
# from installation to running kernel on s390 (bsc#1086665, bsc#1210525)
S390_WHITELIST = [
/net\.ifnames=\S*/,
/fips=\S*/,
/mitigations=\S*/,
/rd\.zdev=\S*/,
/zfcp\.allow_lun_scan=\S*/
/zfcp\.allow_lun_scan=\S*/,
/cio_ignore=\S*/
teclator marked this conversation as resolved.
Show resolved Hide resolved
].freeze

# Get parameters for the default kernel
Expand Down
Loading