Path: blob/main/hypervisor/src/halla/halla_sys/bindgen.sh
5394 views
#!/usr/bin/env bash1# Copyright 2025 The ChromiumOS Authors2# Use of this source code is governed by a BSD-style license that can be3# found in the LICENSE file.45# Regenerate halla_sys bindgen bindings.67set -euo pipefail8cd "$(dirname "${BASH_SOURCE[0]}")/../../../.."910source tools/impl/bindgen-common.sh1112HVM_HEADER_FILE="${BINDGEN_LINUX_ARM64_HEADERS}/include/linux/hvm_common.h"13HVM_SYS_BASE="hypervisor/src/halla/halla_sys"14HVM_BINDINGS="${HVM_SYS_BASE}/aarch64/bindings.rs"1516bindgen_generate \17--blocklist-item='__kernel.*' \18--blocklist-item='__BITS_PER_LONG' \19--blocklist-item='__FD_SETSIZE' \20--blocklist-item='_?IOC.*' \21${HVM_HEADER_FILE} \22-- \23-isystem "${BINDGEN_LINUX_ARM64_HEADERS}/include" \24| replace_linux_int_types \25> ${HVM_BINDINGS}262728