mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-17 23:44:17 +08:00
Update installer, build installer with Redox
This commit is contained in:
parent
ddcdba3acc
commit
3357b57fa8
@ -8,6 +8,7 @@ members = [
|
||||
"drivers/ps2d",
|
||||
"drivers/rtl8168d",
|
||||
"drivers/vesad",
|
||||
"installer",
|
||||
"kernel",
|
||||
"programs/acid",
|
||||
"programs/binutils",
|
||||
|
||||
@ -1 +1 @@
|
||||
Subproject commit 1abfd39b8da12b5fa40d48fec66016e981d58f42
|
||||
Subproject commit be092f37546dfb2ec297635c0f8e4b040189ca55
|
||||
7
mk/userspace/installer.mk
Normal file
7
mk/userspace/installer.mk
Normal file
@ -0,0 +1,7 @@
|
||||
installer: \
|
||||
filesystem/bin/redox_installer
|
||||
|
||||
filesystem/bin/redox_installer: installer/Cargo.toml installer/src/** $(BUILD)/libstd.rlib
|
||||
mkdir -p filesystem/bin
|
||||
$(CARGO) rustc --manifest-path $< --bin redox_installer $(CARGOFLAGS) -o $@
|
||||
$(STRIP) $@
|
||||
@ -3,6 +3,7 @@ userspace: \
|
||||
coreutils \
|
||||
extrautils \
|
||||
games \
|
||||
installer \
|
||||
ion \
|
||||
netutils \
|
||||
orbutils \
|
||||
@ -11,6 +12,7 @@ userspace: \
|
||||
schemes \
|
||||
filesystem/bin/acid \
|
||||
filesystem/bin/contain \
|
||||
filesystem/bin/redox_installer \
|
||||
filesystem/bin/smith \
|
||||
filesystem/bin/tar
|
||||
|
||||
@ -19,6 +21,7 @@ include mk/userspace/coreutils.mk
|
||||
include mk/userspace/drivers.mk
|
||||
include mk/userspace/extrautils.mk
|
||||
include mk/userspace/games.mk
|
||||
include mk/userspace/installer.mk
|
||||
include mk/userspace/ion.mk
|
||||
include mk/userspace/netutils.mk
|
||||
include mk/userspace/orbutils.mk
|
||||
|
||||
Loading…
Reference in New Issue
Block a user