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
error: build of '/nix/store/lc4j6ld34rfrimmgcna9rngc8ddzqm85-device-tree-overlays.drv' on 'ssh://[email protected]' failed: builder for '/nix/store/lc4j6ld34rfrimmgcna9rngc8ddzqm85-device-tree-overlays.drv' failed with exit code 1 | |
builder for '/nix/store/lc4j6ld34rfrimmgcna9rngc8ddzqm85-device-tree-overlays.drv' failed with exit code 1; last 10 log lines: | |
'./marvell/armada-7040-db.dtb' -> '/nix/store/x99ip5g71rwn94mf8l8kr4hqil8bfp6m-device-tree-overlays/./marvell/armada-7040-db.dtb' | |
'./marvell/armada-8080-db.dtb' -> '/nix/store/x99ip5g71rwn94mf8l8kr4hqil8bfp6m-device-tree-overlays/./marvell/armada-8080-db.dtb' | |
'./marvell/armada-8040-db.dtb' -> '/nix/store/x99ip5g71rwn94mf8l8kr4hqil8bfp6m-device-tree-overlays/./marvell/armada-8040-db.dtb' | |
'./marvell/armada-8040-clearfog-gt-8k.dtb' -> '/nix/store/x99ip5g71rwn94mf8l8kr4hqil8bfp6m-device-tree-overlays/./marvell/armada-8040-clearfog-gt-8k.dtb' | |
'./marvell/armada-3720-espressobin.dtb' -> '/nix/store/x99ip5g71rwn94mf8l8kr4hqil8bfp6m-device-tree-overlays |
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
# U-Boot used to need this to work, regardless of whether UART is actually used or not. | |
# TODO: check when/if this can be removed. | |
enable_uart=1 | |
# Prevent the firmware from smashing the framebuffer setup done by the mainline kernel | |
# when attempting to show low-voltage or overtemperature warnings. | |
avoid_warnings=1 | |
# Boot in 64-bit mode. | |
arm_64bit=1 | |
kernel=kernel.img |
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
diff --git a/src/configuration/ArcanistConfigurationManager.php b/src/configuration/ArcanistConfigurationManager.php | |
index f1391a8b..8689c34e 100644 | |
--- a/src/configuration/ArcanistConfigurationManager.php | |
+++ b/src/configuration/ArcanistConfigurationManager.php | |
@@ -181,7 +181,7 @@ final class ArcanistConfigurationManager extends Phobject { | |
'Config: Reading user configuration file "%s"...', | |
$user_config_path)); | |
- if (!phutil_is_windows()) { | |
+ if (false) { |
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
#!/nix/store/z4ajipns0l1s8b2lrgpy6nng4cys7h99-bash-4.4-p23/bin/bash | |
PATH=/nix/store/z4ajipns0l1s8b2lrgpy6nng4cys7h99-bash-4.4-p23/bin:/nix/store/hzvl3dvv8651iqlb5g6gq5hzjzmhjn7m-coreutils-8.31/bin:/nix/store/rphcpivxfm4blw36ki262yrmqygw9pcp-findutils-4.7.0/bin:/nix/store/9k90a16frvqdcxzkhxcjsi2qczv3i4x4-gnused-4.8/bin:/nix/store/zckg7fafpkpmdhgajyalakirlw88k1jz-jq-1.6-bin/bin:/nix/store/83f38s2vp9nlkh3akilbhw2869xy0b9l-nix-2.3.3/bin:/nix/store/ban4jcddacl71ld8axbnlnlh5gr0712q-openssh-8.2p1/bin:/nix/store/nz8baf2s4wygv1nc6pybb7dc5wn3yw8f-procps-3.3.16/bin:/nix/store/308x65jfhxxybjwp46492y6zqqw2z2b8-rsync-3.1.3/bin | |
set -euo pipefail | |
# Kill all child processes when interrupting/exiting | |
trap exit INT TERM | |
trap 'for pid in $(jobs -p) ; do kill -- -$pid ; done' EXIT | |
# Be sure to use --foreground for all timeouts, therwise a Ctrl-C won't stop them! | |
# See https://unix.stackexchange.com/a/233685/214651 |
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
ghc> unpacking sources | |
ghc> unpacking source archive /nix/store/a9mfs6rwkkhf21xyq3hwivbncvqnaw7f-ghc-8.8.4-src.tar.xz | |
ghc> source root is ghc-8.8.4 | |
ghc> setting SOURCE_DATE_EPOCH to timestamp 1594839355 of file ghc-8.8.4/utils/genprimopcode/Parser.hs | |
ghc> patching sources | |
ghc> patching script interpreter paths in . | |
ghc> ./config.guess: interpreter directive changed from " /bin/sh" to "/nix/store/v9h22dvmy8apyj38pz9msf3caswxblaa-bash-4.4-p23/bin/sh" | |
ghc> ./distrib/mkDocs/mkDocs: interpreter directive changed from "/bin/sh" to "/nix/store/v9h22dvmy8apyj38pz9msf3caswxblaa-bash-4.4-p23/bin/sh" | |
ghc> ./config.sub: interpreter directive changed from " /bin/sh" to "/nix/store/v9h22dvmy8apyj38pz9msf3caswxblaa-bash-4.4-p23/bin/sh" | |
ghc> ./libraries/integer-gmp/config.guess: interpreter directive changed from " /bin/sh" to "/nix/store/v9h22dvmy8apyj38pz9msf3caswxblaa-bash-4.4-p23/bin/sh" |
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
font pango:FontAwesome 8, Iosevka 8 | |
floating_modifier Mod4 | |
default_border pixel 0 | |
default_floating_border pixel 0 | |
hide_edge_borders none | |
focus_wrapping no | |
focus_follows_mouse no | |
focus_on_window_activation smart | |
mouse_warping output | |
workspace_layout default |
This file has been truncated, but you can view the full file.
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
00:00:00.000 [sway/main.c:326] Sway version 1.5 | |
00:00:00.003 [sway/main.c:153] Linux foucault 5.7.9 #1-NixOS SMP Thu Jul 16 06:13:36 UTC 2020 x86_64 GNU/Linux | |
00:00:00.003 [sway/main.c:169] Contents of /etc/os-release: | |
00:00:00.003 [sway/main.c:153] NAME=NixOS | |
00:00:00.003 [sway/main.c:153] ID=nixos | |
00:00:00.003 [sway/main.c:153] VERSION="20.09pre-git (Nightingale)" | |
00:00:00.003 [sway/main.c:153] VERSION_CODENAME=nightingale | |
00:00:00.003 [sway/main.c:153] VERSION_ID="20.09pre-git" | |
00:00:00.003 [sway/main.c:153] PRETTY_NAME="NixOS 20.09 (Nightingale)" | |
00:00:00.003 [sway/main.c:153] LOGO="nix-snowflake" |
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
[ 0.000000] Linux version 5.7.9 (nixbld@localhost) (gcc version 9.3.0 (GCC), GNU ld (GNU Binutils) 2.31.1) #1-NixOS SMP Thu Jul 16 06:13:36 UTC 2020 | |
[ 0.000000] Command line: initrd=\efi\nixos\xghqqhjvzwha68brq5s122viw5066j63-initrd-linux-5.7.9-initrd.efi systemConfig=/nix/store/vcjrdg3bi57qd9zi45h0sin26grcx3rm-nixos-system-foucault-20.09pre-git init=/nix/store/vcjrdg3bi57qd9zi45h0sin26grcx3rm-nixos-system-foucault-20.09pre-git/init quiet splash vga=current i915.fastboot=1 loglevel=3 systemd.show_status=auto udev.log_priority=3 intel_iommu=on psmouse.synaptics_intertouch=1 log_buf_len=10M loglevel=1 | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' | |
[ 0.000000] x86/fpu: xstate_offs |
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
[ 0.000000] Linux version 5.7.9 (nixbld@localhost) (gcc version 9.3.0 (GCC), GNU ld (GNU Binutils) 2.31.1) #1-NixOS SMP Thu Jul 16 06:13:36 UTC 2020 | |
[ 0.000000] Command line: initrd=\efi\nixos\xghqqhjvzwha68brq5s122viw5066j63-initrd-linux-5.7.9-initrd.efi systemConfig=/nix/store/vcjrdg3bi57qd9zi45h0sin26grcx3rm-nixos-system-foucault-20.09pre-git init=/nix/store/vcjrdg3bi57qd9zi45h0sin26grcx3rm-nixos-system-foucault-20.09pre-git/init quiet splash vga=current i915.fastboot=1 loglevel=3 systemd.show_status=auto udev.log_priority=3 intel_iommu=on psmouse.synaptics_intertouch=1 log_buf_len=10M loglevel=1 | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers' | |
[ 0.000000] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR' | |
[ 0.000000] x86/fpu: xstate_offs |
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
00:00:00.000 [sway/main.c:326] Sway version 1.5 | |
00:00:00.003 [sway/main.c:153] Linux foucault 5.4.52 #1-NixOS SMP Thu Jul 16 06:16:48 UTC 2020 x86_64 GNU/Linux | |
00:00:00.003 [sway/main.c:169] Contents of /etc/os-release: | |
00:00:00.003 [sway/main.c:153] NAME=NixOS | |
00:00:00.003 [sway/main.c:153] ID=nixos | |
00:00:00.003 [sway/main.c:153] VERSION="20.09pre-git (Nightingale)" | |
00:00:00.003 [sway/main.c:153] VERSION_CODENAME=nightingale | |
00:00:00.003 [sway/main.c:153] VERSION_ID="20.09pre-git" | |
00:00:00.003 [sway/main.c:153] PRETTY_NAME="NixOS 20.09 (Nightingale)" | |
00:00:00.003 [sway/main.c:153] LOGO="nix-snowflake" |