Skip to content

Commit fe1f1fd

Browse files
authored
Merge pull request #65 from mvallim/feature/secure-boot
Support built image to boot with secure boot enabled.
2 parents 921684e + 5bd8fb3 commit fe1f1fd

File tree

10 files changed

+728
-403
lines changed

10 files changed

+728
-403
lines changed

.github/workflows/build-bionic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/build-focal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-20.04
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/build-jammy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99

1010
jobs:
1111
build:
12-
runs-on: ubuntu-22.04
12+
runs-on: ubuntu-latest
1313

1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/build-noble.yml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: build-noble
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
pull_request:
7+
branches: [ master ]
8+
workflow_dispatch:
9+
10+
jobs:
11+
build:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v2
16+
17+
- name: Build
18+
run: |
19+
cd scripts
20+
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="noble"/g' default_config.sh
21+
./build.sh -
22+
cd ..
23+
- name: Archive artifacts
24+
uses: actions/upload-artifact@v3
25+
with:
26+
name: ubuntu-from-scratch
27+
path: |
28+
scripts/ubuntu-from-scratch.iso
29+
scripts/image/md5sum.txt

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
scripts/chroot
22
scripts/image
3+
scripts/certificates
34
*.iso

CONTRIBUTORS.txt

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
Marcos Vallim <tischer@gmail.com>
2-
Ken Gilmer <kgilmer@gmail.com>
1+
Marcos Vallim <tischer@gmail.com> - mvallim
2+
Ken Gilmer <kgilmer@gmail.com> - kgilmer
3+
Anduin Xue <anduin@aiursoft.com> - Anduin2017
4+
Andreas Blaesius <andi@unlegacy-android.org> - andi34
5+
Andre Julius <> - NotNorom
6+
sostela <>
37
monkey-jsun <>
4-
Andreas Blaesius <andi@unlegacy-android.org>

0 commit comments

Comments
 (0)