-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
s390x: add support for IBM Z DASD disks
Installation on DASD disks is a bit tricky, this patch makes coreos-installer able to format, create partitions, and finally install CoreOS on s390x. Signed-off-by: Nikita Dubrovskii <[email protected]>
- Loading branch information
1 parent
91d319a
commit c634338
Showing
8 changed files
with
813 additions
and
7 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# CoreOS installation on IBM Z | ||
|
||
IBM s390x machines usually have DASD (Direct Access Storage Devices) disks. | ||
|
||
To use DASD as a Linux harddisk we have to pass thru several steps: | ||
1) Using `dasdfmt` tool we have to low-level format it | ||
2) Using `fdasd` tool we have to create partition(s) on it | ||
3) Copy each partition from CoreOS image to corresponding partition on DASD) | ||
4) Using `zipl` tool install boot loader | ||
5) Using `chreipl` tool mark DASD as next boot devcie |
Oops, something went wrong.