18 lines
428 B
Makefile
18 lines
428 B
Makefile
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2022-present Fewtarius
|
|
|
|
PKG_NAME="ectool"
|
|
PKG_VERSION="23c77ef0c32f9f03a367c89babb303dde526da85"
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="https://review.coreboot.org/coreboot"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_ARCH="x86_64"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="A simple tool for manipulating the embedded controller."
|
|
|
|
make_target() {
|
|
cd util/ectool
|
|
export PREFIX=/usr
|
|
make
|
|
}
|
|
|