• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2# Copyright 2020 The ChromiumOS Authors
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6# Restructures to allow shared arc features config across projects.
7
8project=$1
9
10./config/bin/gen_config config.star
11
12changes=$(git status | grep "sw_build_config")
13if [[ -n "${changes}" ]]; then
14  git rm sw_build_config/platform/chromeos-config/generated/arc/hardware_features_*_*.xml
15  ./config/bin/gen_config config.star
16  git add sw_build_config/platform/chromeos-config/generated/arc/hardware_features*
17  git add -u
18fi
19