mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
26 lines
775 B
Makefile
26 lines
775 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 terminus-font:init"
|
|
PKG_DEPENDS_TARGET="toolchain initramfs:init"
|
|
PKG_SECTION="virtual"
|
|
PKG_LONGDESC="Metapackage for installing initramfs"
|
|
|
|
if [ "${ISCSI_SUPPORT}" = yes ]; then
|
|
PKG_DEPENDS_INIT+=" open-iscsi:init"
|
|
fi
|
|
|
|
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
|