Skip to content

Commit

Permalink
Dockerize the build
Browse files Browse the repository at this point in the history
  • Loading branch information
WilliamsPaulM committed Nov 1, 2023
1 parent da77032 commit 4fb2e6b
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM devkitpro/devkitarm

WORKDIR /ezkernel
ENV LIBGBA="${DEVKITPRO}/libgba"
CMD ["make"]
11 changes: 10 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,13 @@
PATH,DEVKITARM,DEVKITPRO,LIBGBA

3.Double click on build.bat under winodws. If it goes well, you will get ezkernel.gba
4.Rename the ezkernel.gba to ezkernel.bin, that is the omega kernel upgrade file
4.Rename the ezkernel.gba to ezkernel.bin, that is the omega kernel upgrade file

## Docker

```
docker build -t ezkernel .
docker container run --rm -v "$(pwd)":/ezkernel:rw ezkernel
```

Rename the ezkernel.gba to ezkernel.bin, that is the omega kernel upgrade file

0 comments on commit 4fb2e6b

Please sign in to comment.