summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Soller <jeremy@system76.com>2021-01-19 12:28:46 -0700
committerJeremy Soller <jeremy@system76.com>2021-01-19 12:28:46 -0700
commiteb3b95460f1c8cbfc0d6159ef729e1ba7be1d613 (patch)
tree23aed2f9cbfa2fa73a0ee39e4e1b8c5249f24c00
parente47ba0615d47e5ebbf93c69234c56fb0d9a28daf (diff)
Do not copy bootloader, kernel, or relibc to filesystem
-rw-r--r--mk/filesystem.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/mk/filesystem.mk b/mk/filesystem.mk
index e048bad..34c16ba 100644
--- a/mk/filesystem.mk
+++ b/mk/filesystem.mk
@@ -10,11 +10,11 @@ build/filesystem.bin: filesystem.toml build/bootloader build/kernel prefix
redoxfs/target/release/redoxfs $@.partial build/filesystem/
sleep 2
pgrep redoxfs
- cp $< build/filesystem/filesystem.toml
- cp build/bootloader build/filesystem/bootloader
- cp build/kernel build/filesystem/kernel
- cp -r $(ROOT)/$(PREFIX_INSTALL)/$(TARGET)/include build/filesystem/include
- cp -r $(ROOT)/$(PREFIX_INSTALL)/$(TARGET)/lib build/filesystem/lib
+ # TODO aarch64: cp $< build/filesystem/filesystem.toml
+ # TODO aarch64: cp build/bootloader build/filesystem/bootloader
+ # TODO aarch64: cp build/kernel build/filesystem/kernel
+ # TODO aarch64: cp -r $(ROOT)/$(PREFIX_INSTALL)/$(TARGET)/include build/filesystem/include
+ # TODO aarch64: cp -r $(ROOT)/$(PREFIX_INSTALL)/$(TARGET)/lib build/filesystem/lib
$(INSTALLER) -c $< build/filesystem/
sync
-$(FUMOUNT) build/filesystem/ || true