Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
25993b6
scripts: switch to Ubuntu Jammy Jellyfish (22.04) by default
andi34 Aug 8, 2022
57a2f8a
Merge pull request #46 from andi34/jammy-fix
mvallim Sep 26, 2022
d9af041
Update build-bionic.yml
mvallim Sep 26, 2022
e21d94c
Update build-focal.yml
mvallim Sep 26, 2022
d809995
Merge pull request #49 from mvallim/mvallim-patch-1
mvallim Sep 26, 2022
9bfda7f
Support secure boot.
Anduin2017 Sep 2, 2024
6e24152
fix(build.sh): generate efiboot.img
mvallim Sep 2, 2024
cfc73ce
Update README.md
mvallim Sep 2, 2024
9196b78
Update README.md
mvallim Sep 2, 2024
d5623e8
fix(build.sh): generate efiboot.img
mvallim Sep 2, 2024
dc1643d
fix(build.sh): generate efiboot.img
mvallim Sep 2, 2024
382ff18
Update README.md
mvallim Sep 3, 2024
bf0ac55
Update README.md
mvallim Sep 3, 2024
89cd997
fix(build.sh): generate efiboot.img
mvallim Sep 3, 2024
5578b99
Update build.sh
Anduin2017 Sep 3, 2024
f483e61
Update README.md
Anduin2017 Sep 4, 2024
921684e
Merge pull request #63 from Anduin2017/patch-1
mvallim Sep 4, 2024
87dfd97
feat: enable secureboot
mvallim Sep 6, 2024
1e15c10
feat: enable secureboot
mvallim Sep 6, 2024
1672d71
Merge remote-tracking branch 'origin' into feature/secure-boot
mvallim Sep 6, 2024
b0da1a0
feat: enable secureboot
mvallim Sep 6, 2024
0ff0481
feat: enable secureboot
mvallim Sep 6, 2024
e253205
feat: enable secureboot
mvallim Sep 6, 2024
d78d4b2
feat: enable secureboot
mvallim Sep 6, 2024
ff61940
feat: enable secureboot
mvallim Sep 6, 2024
e8c6eca
feat: enable secureboot
mvallim Sep 6, 2024
13fac00
feat: enable secureboot
mvallim Sep 6, 2024
c9709f6
feat: enable secureboot
mvallim Sep 7, 2024
61ca760
feat: enable secureboot
mvallim Sep 8, 2024
b0748bf
feat: enable secureboot
mvallim Sep 8, 2024
5bd8fb3
feat: enable secureboot
mvallim Sep 8, 2024
fe1f1fd
Merge pull request #65 from mvallim/feature/secure-boot
mvallim Sep 8, 2024
510ff23
Update README.md
mvallim Sep 8, 2024
84452eb
Merge branch 'master' into master
mvallim Sep 8, 2024
052e205
Merge pull request #62 from Anduin2017/master
mvallim Sep 8, 2024
149ebba
Update README.md
mvallim Sep 8, 2024
8c7ecbe
Update README.md
mvallim Sep 8, 2024
7d437ac
Update README.md
mvallim Sep 8, 2024
565a793
Update README.md
mvallim Sep 8, 2024
3d2f41d
Update default_config.sh
mvallim Sep 8, 2024
5465b36
Update chroot_build.sh
mvallim Sep 8, 2024
cf38a2e
Update chroot_build.sh
mvallim Sep 8, 2024
ef9ba42
Update default_config.sh
mvallim Sep 8, 2024
b6ed7aa
Update README.md
mvallim Sep 9, 2024
3065045
Merge pull request #67 from mvallim/chore/documentation
mvallim Sep 9, 2024
1131a82
Update README.md
mvallim Sep 9, 2024
accc685
Update README.md
mvallim Sep 9, 2024
d8f50f5
Update README.md
mvallim Sep 9, 2024
748b4d3
feat: install open source memtest86+ v7.00
mvallim Sep 10, 2024
daba0cd
feat: secure boot noble
mvallim Sep 10, 2024
2ad9be1
feat: secure boot noble
mvallim Sep 11, 2024
d3a4cea
feat: secure boot noble
mvallim Sep 11, 2024
29c8324
Update README.md
mvallim Sep 11, 2024
6522b3a
Update README.md
mvallim Sep 11, 2024
55e7cce
Update README.md
mvallim Sep 15, 2024
6450a0a
Update README.md
mvallim Sep 24, 2024
d2c207c
Update README.md
mvallim Sep 24, 2024
605c252
Update README.md
mvallim Sep 24, 2024
df77787
Update README.md
mvallim Sep 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/build-bionic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand All @@ -19,3 +19,10 @@ jobs:
cd scripts
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="bionic"/g' default_config.sh
./build.sh -
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: ubuntu-from-scratch
path: |
scripts/ubuntu-from-scratch.iso
scripts/image/md5sum.txt
9 changes: 8 additions & 1 deletion .github/workflows/build-focal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand All @@ -19,3 +19,10 @@ jobs:
cd scripts
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="focal"/g' default_config.sh
./build.sh -
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: ubuntu-from-scratch
path: |
scripts/ubuntu-from-scratch.iso
scripts/image/md5sum.txt
3 changes: 1 addition & 2 deletions .github/workflows/build-jammy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
Expand All @@ -18,7 +18,6 @@ jobs:
run: |
cd scripts
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="jammy"/g' default_config.sh
sed -i -E '/lupin-casper/d' chroot_build.sh
./build.sh -
cd ..
- name: Archive artifacts
Expand Down
29 changes: 29 additions & 0 deletions .github/workflows/build-noble.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: build-noble

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Build
run: |
cd scripts
sed -i -E 's/TARGET_UBUNTU_VERSION=(.*)/TARGET_UBUNTU_VERSION="noble"/g' default_config.sh
./build.sh -
cd ..
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: ubuntu-from-scratch
path: |
scripts/ubuntu-from-scratch.iso
scripts/image/md5sum.txt
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
scripts/chroot
scripts/image
scripts/certificates
*.iso
8 changes: 6 additions & 2 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
Marcos Vallim <tischer@gmail.com>
Ken Gilmer <kgilmer@gmail.com>
Marcos Vallim <tischer@gmail.com> - mvallim
Ken Gilmer <kgilmer@gmail.com> - kgilmer
Anduin Xue <anduin@aiursoft.com> - Anduin2017
Andreas Blaesius <andi@unlegacy-android.org> - andi34
Andre Julius <> - NotNorom
sostela <>
monkey-jsun <>
Loading