-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
438 additions
and
206 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
build |
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,15 @@ | ||
FROM ubuntu:17.04 | ||
|
||
RUN apt-get update \ | ||
&& apt-get -y install \ | ||
bc build-essential cmake gcc-aarch64-linux-gnu g++-aarch64-linux-gnu git unzip qemu-user-static multistrap zip wget dosfstools kpartx golang-1.8-go \ | ||
&& apt-get clean \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
ENV GOPATH=/go PATH=/go/bin:/usr/lib/go-1.8/bin:$PATH | ||
|
||
WORKDIR $GOPATH/src/github.com/bamarni/pi64 | ||
|
||
COPY . $GOPATH/src/github.com/bamarni/pi64 | ||
|
||
RUN go install github.com/bamarni/pi64/cmd/pi64-build && go get github.com/aktau/github-release |
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,18 @@ | ||
.PHONY: build release | ||
|
||
build: build/pi64-lite.zip build/pi64-desktop.zip | ||
|
||
build/pi64-lite.zip: build/linux build/userland | ||
bash make/image lite | ||
|
||
build/pi64-desktop.zip: build/linux build/userland | ||
bash make/image desktop | ||
|
||
build/userland: | ||
bash make/videocore | ||
|
||
build/linux: | ||
bash make/kernel | ||
|
||
release: | ||
bash make/release |
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
Oops, something went wrong.