Update wsl.md

This commit is contained in:
yude 2020-08-30 22:27:49 +09:00
parent 2ea3b9355a
commit 1062e362dd
No known key found for this signature in database
GPG Key ID: A49BFB97E0AB5435
1 changed files with 28 additions and 6 deletions

View File

@ -1,14 +1,36 @@
# (未完成) Windows Subsystem for Linux (WSL) で起動する
## 手順
前提: 上記のソフトウェアがすべてインストールされ、PATH (環境変数)が通っている。
## 環境
* Windows Subsystem for Linux
* Ubuntu 20.04 LTS
1. コマンドラインで下記を実行する
## ビルド
コマンドラインで下記を実行する
* アップデート
```sudo apt -y update && sudo apt -y upgrade```
* ビルドに必要なパッケージをインストール
```sudo apt -y install build-essential uuid-dev iasl git gcc-5 nasm python3-distutils```
* edk2 をクローン
```git clone https://github.com/tianocore/edk2.git```
* SprinkleOS をクローン
```cd edk2```
```git clone https://gitlab.pepepper.cf/ecri/sprinkleos.git```
```edksetup.bat rebuild```
```edksetup.bat```
```make -C BaseTools/Source/C```
* edk2 のconfigなどを生成する
```. edksetup.sh```
* target.txt の編集
`Conf/target.txt`を開き、以下を編集する。
`- ACTIVE_PLATFORM = EmulatorPkg/EmulatorPkg.dsc`
`+ ACTIVE_PLATFORM = sprinkleos/sprinkleos.dsc`
`- TARGET_ARCH = IA32`
`+ TARGET_ARCH = X64`
`- TOOL_CHAIN_TAG = VS2015x86`
`+ TOOL_CHAIN_TAG = GCC5`
* ビルド
```build```
成果物は `Build/SprinkleOSX64/DEBUG_GCC5/X64/sprinkleos.efi` にあります。
## 起動
## 参考
* [Using EDK II with Native GCC · tianocore/tianocore.github.io Wiki](https://github.com/tianocore/tianocore.github.io/wiki/Using-EDK-II-with-Native-GCC#Install_required_software_from_apt)