-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #84 from hangpark/iss/81
[#81] Update README
- Loading branch information
Showing
1 changed file
with
19 additions
and
3 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -6,7 +6,23 @@ Repository for PintOS implementation project of CS330 in KAIST. | |
|
||
To contribute, read [CONTRIBUTING.md](CONTRIBUTING.md). | ||
|
||
## Contributors | ||
## Requirements | ||
|
||
- Hang Park <[email protected]> | ||
- Lament <[email protected]> | ||
This OS is run in the specific environment below: | ||
|
||
- Ubuntu 8.04 (Hardy Heron) | ||
- GCC 3.4 | ||
- Bochs 2.2.6 | ||
- QEMU 0.15.0 | ||
|
||
You can use Bochs or QEMU for emulate PintOS. | ||
|
||
## Build | ||
|
||
Docker image for an environment satisfies above requirements is provided at [hangpark/pintos-dev-env-kaist](https://hub.docker.com/r/hangpark/pintos-dev-env-kaist/). Use below commands to build (or check, grade) the PintOS. | ||
```bash | ||
$ git clone https://github.com/hangpark/pintos.git | ||
$ sudo docker pull hangpark/pintos-dev-env-kaist | ||
$ sudo docker run -t -d --name pintos -v pintos:/pintos hangpark/pintos-dev-env-kaist | ||
$ sudo docker exec -i -t pintos bash -c "cd src/<dir> && make [check|grade]" | ||
``` |