mirror of
https://github.com/LibreELEC/LibreELEC.tv
synced 2025-09-24 19:46:01 +07:00
22 lines
675 B
Makefile
22 lines
675 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
PKG_NAME="initramfs"
|
|
PKG_VERSION=""
|
|
PKG_LICENSE="GPL"
|
|
PKG_SITE="http://www.openelec.tv"
|
|
PKG_URL=""
|
|
PKG_DEPENDS_INIT="libc:init busybox:init plymouth-lite:init util-linux:init e2fsprogs:init dosfstools:init"
|
|
PKG_DEPENDS_TARGET="toolchain initramfs:init"
|
|
PKG_SECTION="virtual"
|
|
PKG_LONGDESC="Metapackage for installing initramfs"
|
|
|
|
if [ "${INITRAMFS_PARTED_SUPPORT}" = yes ]; then
|
|
PKG_DEPENDS_INIT+=" parted:init"
|
|
fi
|
|
|
|
for i in ${PKG_DEPENDS_INIT}; do
|
|
PKG_NEED_UNPACK+=" $(get_pkg_directory ${i})"
|
|
done
|