| # Copyright 2023 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| load( |
| "@rules_fuchsia//fuchsia:assembly.bzl", |
| "fuchsia_board_input_bundle", |
| "fuchsia_board_input_bundle_set", |
| "fuchsia_hybrid_board_configuration", |
| "fuchsia_prebuilt_board_configuration", |
| ) |
| |
| package(default_visibility = ["//visibility:public"]) |
| |
| fuchsia_board_input_bundle( |
| name = "rtc", |
| base_driver_packages = [ |
| "//src/drivers/pcf8563:pkg", |
| ], |
| version_file = "//:stable_status.txt", |
| ) |
| |
| fuchsia_board_input_bundle_set( |
| name = "rtc_set", |
| board_input_bundles = [":rtc"], |
| version_file = "//:stable_status.txt", |
| ) |
| |
| fuchsia_prebuilt_board_configuration( |
| name = "vim3", |
| directory = "@vim3_board//:all_files", |
| ) |
| |
| fuchsia_hybrid_board_configuration( |
| name = "hybrid_vim3", |
| board_configuration = ":vim3", |
| replacement_board_input_bundle_sets = [":rtc_set"], |
| ) |