Compare commits

...

3 Commits

Author SHA1 Message Date
Jeremy Soller 5e39ab0609
Install parted in gitlab CI 2020-12-24 15:47:10 -07:00
Jeremy Soller d32d94c796
Fix EFI variable, update CI to use 20.04 2020-12-24 15:30:01 -07:00
Jeremy Soller ecb4c97966
Update bootloader-efi 2020-12-24 15:28:43 -07:00
3 changed files with 5 additions and 3 deletions

View File

@ -1,4 +1,4 @@
image: "ubuntu:18.04" image: "ubuntu:20.04"
variables: variables:
GIT_STRATEGY: "pull" GIT_STRATEGY: "pull"
@ -7,6 +7,7 @@ variables:
before_script: before_script:
- | - |
export DEBIAN_FRONTEND=noninteractive
apt-get update -qq && apt-get update -qq &&
apt-get install -qq \ apt-get install -qq \
bison \ bison \
@ -20,6 +21,7 @@ before_script:
gnupg \ gnupg \
libfuse-dev \ libfuse-dev \
nasm \ nasm \
parted \
pkg-config \ pkg-config \
software-properties-common \ software-properties-common \
syslinux \ syslinux \

@ -1 +1 @@
Subproject commit 5b64cb01f9d18206497f687a1d51d264b9a785f3 Subproject commit e147b413eeb9eb7d01c85cfe1b6b6eea39c47a57

View File

@ -53,7 +53,7 @@ INSTALLER=\
installer/target/release/redox_installer $(INSTALLER_FLAGS) installer/target/release/redox_installer $(INSTALLER_FLAGS)
## Bootloader variables ## Bootloader variables
EFI_TARGET=$(ARCH)-efi-pe EFI_TARGET=$(ARCH)-unknown-uefi
## Cross compiler variables ## Cross compiler variables
AR=$(TARGET)-gcc-ar AR=$(TARGET)-gcc-ar