params.cc clarify conditional compilation(#20699)

old-commit-hash: 737d002d80
commatwo_master
Dean Lee 4 years ago committed by GitHub
parent d9d6ed2b3b
commit 8e7f4788d5
  1. 7
      selfdrive/common/params.cc

@ -32,17 +32,12 @@ namespace {
#if defined(QCOM) || defined(QCOM2)
const std::string default_params_path = "/data/params";
#else
const std::string default_params_path = util::getenv_default("HOME", "/.comma/params", "/data/params");
#endif
#if defined(QCOM) || defined(QCOM2)
const std::string persistent_params_path = "/persist/comma/params";
#else
const std::string default_params_path = util::getenv_default("HOME", "/.comma/params", "/data/params");
const std::string persistent_params_path = default_params_path;
#endif
volatile sig_atomic_t params_do_exit = 0;
void params_sig_handler(int signal) {
params_do_exit = 1;

Loading…
Cancel
Save