blob: cb13393c3ce3f260942d30be48e22a6f6c5a5689 [file] [log] [blame]
#!/bin/bash
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# This is a fake mosys used during tests.
if [[ $# -ne 2 ]]; then
exit 1
fi
if [[ "$1" != "platform" ]]; then
exit 1
fi
case "$2" in
name )
echo test_mosys_name_string
;;
model )
echo test_mosys_model_string
;;
brand )
echo BRND
;;
sku )
echo 123
;;
* )
exit 1
;;
esac