Make travis build use packages from static.redox-os.org

This commit is contained in:
Jeremy Soller 2017-06-29 20:06:16 -06:00
parent bf9cbb5eaa
commit cb0dd7ffd5
5 changed files with 14 additions and 8 deletions

View file

@ -1,5 +1,6 @@
# Configuration
ARCH?=x86_64
INSTALLER_FLAGS?=--cookbook=cookbook
# Per host variables
UNAME := $(shell uname)

View file

@ -9,7 +9,7 @@ build/filesystem.bin: filesystem.toml build/kernel
sleep 2
pgrep redoxfs
cp build/kernel build/filesystem/kernel
cargo run --manifest-path installer/Cargo.toml -- --cookbook=cookbook $<
cargo run --manifest-path installer/Cargo.toml -- $(INSTALLER_FLAGS) $<
chown -R 0:0 build/filesystem
chown -R 1000:1000 build/filesystem/home/user
chmod -R uog+rX build/filesystem

View file

@ -1,3 +1,3 @@
build/initfs.tag: initfs.toml
cargo run --manifest-path installer/Cargo.toml -- --cookbook=cookbook $<
cargo run --manifest-path installer/Cargo.toml -- $(INSTALLER_FLAGS) $<
touch $@