Created
April 24, 2017 13:15
-
-
Save goyox86/17482639db7e7d36fbcd8824135fa6dc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
Finished release [optimized] target(s) in 0.81 secs | |
x86_64-elf-strip filesystem/bin/timeout | |
sudo umount build/filesystem/ || true | |
Password: | |
umount: build/filesystem/: not currently mounted | |
rm -rf build/filesystem.bin build/filesystem/ | |
dd if=/dev/zero of=build/filesystem.bin bs=1048576 count=128 | |
128+0 records in | |
128+0 records out | |
134217728 bytes transferred in 0.070350 secs (1907858682 bytes/sec) | |
cargo run --manifest-path schemes/redoxfs/Cargo.toml --quiet --release --bin redoxfs-mkfs build/filesystem.bin | |
redoxfs-mkfs: created filesystem on build/filesystem.bin, size 128 MB | |
mkdir -p build/filesystem/ | |
cargo build --manifest-path schemes/redoxfs/Cargo.toml --quiet --release --bin redoxfs | |
cargo run --manifest-path schemes/redoxfs/Cargo.toml --quiet --release --bin redoxfs -- build/filesystem.bin build/filesystem/ | |
redoxfs: opened filesystem build/filesystem.bin | |
sleep 2 | |
pgrep redoxfs | |
61022 | |
cp -RL filesystem/* build/filesystem/ | |
chown -R 0:0 build/filesystem | |
chown -R 1000:1000 build/filesystem/home/user | |
chmod -R uog+rX build/filesystem | |
chmod -R u+w build/filesystem | |
chmod -R og-w build/filesystem | |
chmod -R 755 build/filesystem/bin | |
chmod -R u+rwX build/filesystem/root | |
chmod -R og-rwx build/filesystem/root | |
chmod -R u+rwX build/filesystem/home/user | |
chmod -R og-rwx build/filesystem/home/user | |
chmod +s build/filesystem/bin/passwd | |
chmod +s build/filesystem/bin/su | |
chmod +s build/filesystem/bin/sudo | |
mkdir build/filesystem/tmp | |
chmod 1777 build/filesystem/tmp | |
sync | |
sudo umount build/filesystem/ || true | |
rm -rf build/filesystem/ | |
nasm -f bin -o build/harddrive.bin -D ARCH_x86_64 -ibootloader/x86_64/ bootloader/x86_64/harddrive.asm | |
startup-x86_64.asm:125: warning: numeric constant 0xFFFFFF000009F000 does not fit in 32 bits | |
bootsector.asm:184: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:2: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:3: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:4: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:5: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:6: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:7: error: integer supplied to a DQ instruction | |
unreal.asm:44: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:118: error: symbol `rax' undefined | |
startup-x86_64.asm:119: error: symbol `rax' undefined | |
startup-x86_64.asm:120: error: symbol `rax' undefined | |
startup-x86_64.asm:121: error: symbol `rax' undefined | |
startup-x86_64.asm:122: error: symbol `rax' undefined | |
startup-x86_64.asm:123: error: symbol `rax' undefined | |
startup-x86_64.asm:125: error: symbol `rsp' undefined | |
startup-x86_64.asm:128: error: symbol `rax' undefined | |
startup-x86_64.asm:129: error: symbol `rax' undefined | |
startup-x86_64.asm:132: error: symbol `rax' undefined | |
startup-x86_64.asm:133: error: symbol `rax' undefined | |
startup-x86_64.asm:134: error: symbol `rax' undefined | |
startup-x86_64.asm:135: error: symbol `rax' undefined | |
startup-x86_64.asm:136: error: symbol `rax' undefined | |
startup-x86_64.asm:137: error: symbol `rax' undefined | |
startup-x86_64.asm:139: error: symbol `rdi' undefined | |
startup-x86_64.asm:140: error: symbol `rsi' undefined | |
startup-x86_64.asm:141: error: symbol `rdx' undefined | |
startup-x86_64.asm:142: error: symbol `rcx' undefined | |
startup-x86_64.asm:144: error: symbol `rsp' undefined | |
startup-x86_64.asm:146: error: symbol `rax' undefined | |
startup-x86_64.asm:147: error: operation size not specified | |
startup-x86_64.asm:148: error: symbol `rax' undefined | |
startup-x86_64.asm:152: error: integer supplied to a DQ instruction | |
startup-x86_64.asm:156: error: integer supplied to a DQ instruction | |
bootloader/x86_64/harddrive.asm:21: error: phase error detected at end of assembly. | |
make: *** [build/harddrive.bin] Error 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment