mirror of
https://github.com/openharmony/kernel_linux_common_modules.git
synced 2026-08-27 19:49:56 -04:00
564a5358d5
Signed-off-by: zhujiaxin <zhujiaxin@huawei.com>
23 lines
395 B
Plaintext
23 lines
395 B
Plaintext
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2023 Huawei Device Co., Ltd.
|
|
#
|
|
# ko build sample
|
|
#
|
|
# Author: z-jax <zhujiaxin@huawei.com>
|
|
#
|
|
# Data: 2023-11-25
|
|
#
|
|
|
|
import("//build/templates/kernel/ohos_kernel_build.gni")
|
|
|
|
ohos_build_ko("ko_sample") {
|
|
sources = [
|
|
"ko_sample.c",
|
|
"sample_fun.c",
|
|
]
|
|
target_ko_name = "kosample"
|
|
device_name = device_name
|
|
device_arch = "arm64"
|
|
}
|