This file contains 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
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/mips 3.18.116 Kernel Configuration | |
# | |
CONFIG_MIPS=y | |
# | |
# Machine selection | |
# | |
# CONFIG_MIPS_ALCHEMY is not set |
This file contains 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
#!/bin/bash | |
MINIDUMP_PATH="${1}" | |
MINIDUMP_STACKWALK=$(which minidump_stackwalk) | |
if [ -z "$MINIDUMP_STACKWALK" ]; then | |
if [ -f "$HOME/.mozbuild/minidump_stackwalk/minidump_stackwalk" ]; then | |
MINIDUMP_STACKWALK="$HOME/.mozbuild/minidump_stackwalk/minidump_stackwalk" | |
else | |
printf "You need the minidump_stackwalk executable in your PATH or under ~/.mozbuild in order to run this script\n" | |
exit 1 |