Files
openwrt_yocto/meta-openwrt/recipes-core/make-ext4fs/make-ext4fs_git.bb
T
francis.wang 4c86c082a2 Initial commit: OpenWrt-Yocto monorepo
Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and
meta-openwrt into a single repository.

Components:
- poky/             Yocto core framework (BitBake + OE-Core)
- meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking)
- meta-openwrt/     OpenWrt customization layer
- setup-env.sh      One-click build environment setup
- README.md         Project documentation
2026-07-11 13:28:01 +08:00

27 lines
857 B
BlitzBasic

# Copyright (C) 2016 Khem Raj <raj.khem@gmail.com>
# Released under the MIT license (see COPYING.MIT for the terms)
DESCRIPTION = "Standalone fork of Android's make_ext4fs utility"
HOMEPAGE = "https://git.openwrt.org/?p=project/make_ext4fs.git;a=summary"
LICENSE = "Apache-2.0"
LIC_FILES_CHKSUM = "file://NOTICE;md5=bb2810bf31da2f6bb39e0bfa86091da3"
SECTION = "tools"
DEPENDS = "zlib"
SRC_URI = "git://git.openwrt.org/project/make_ext4fs.git;protocol=https;branch=master \
file://0001-Add-missing-space-before-linker-option.patch \
"
SRCREV = "5c201be7d72aff735da27e17c29852e0cefe3e52"
S = "${WORKDIR}/git"
B = "${S}"
CFLAGS += "-I${S}/include -I${S}/libsparse/include"
TARGET_CFLAGS:append = " -Wno-implicit-function-declaration"
TARGET_CC_ARCH += "${LDFLAGS}"
do_install() {
install -Dm 0755 ${B}/make_ext4fs ${D}${bindir}/make_ext4fs
}