Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 0 additions & 1 deletion .github/workflows/build-jammy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
1 change: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Marcos Vallim <tischer@gmail.com>
Ken Gilmer <kgilmer@gmail.com>
monkey-jsun <>
Andreas Blaesius <andi@unlegacy-android.org>
10 changes: 9 additions & 1 deletion scripts/chroot_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ function install_pkg() {
sudo \
ubuntu-standard \
casper \
lupin-casper \
discover \
laptop-detect \
os-prober \
Expand All @@ -119,6 +118,15 @@ function install_pkg() {
grub2-common \
locales

case $TARGET_UBUNTU_VERSION in
"focal" | "bionic")
apt-get install -y lupin-casper
;;
*)
echo "Package lupin-casper is not needed. Skipping."
;;
esac

# install kernel
apt-get install -y --no-install-recommends $TARGET_KERNEL_PACKAGE

Expand Down
4 changes: 2 additions & 2 deletions scripts/default_config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
# Usage: Copy this file to config.sh and make changes there. Keep this file (default_config.sh) as-is
# so that subsequent changes can be easily merged from upstream. Keep all customiations in config.sh

# The version of Ubuntu to generate. Successfully tested: bionic, cosmic, disco, eoan, focal, groovy
# The version of Ubuntu to generate. Successfully tested: bionic, cosmic, disco, eoan, focal, groovy, jammy
# See https://wiki.ubuntu.com/DevelopmentCodeNames for details
export TARGET_UBUNTU_VERSION="focal"
export TARGET_UBUNTU_VERSION="jammy"

# The Ubuntu Mirror URL. It's better to change for faster download.
# More mirrors see: https://launchpad.net/ubuntu/+archivemirrors
Expand Down