HeyIns 346a9b4122 Add ZTE/HW kernel and firmware
Change-Id: I8992cced214d91cdebfee76dba76d67002d0f6b0
2025-01-03 15:26:36 +08:00

20 lines
339 B
Bash

# SPDX-License-Identifier: GPL-2.0-only
# Copyright (c) 2023, Jaguar Micro. All rights reserved.
#!/usr/bin/env bash
function build_core() {
pushd crete-core
make clean
make
make install
popd
}
function build_vnet() {
pushd crete-vnet
make clean
make
popd
}
build_core
build_vnet