mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-02-28 23:51:22 +00:00
* Initial fully buildable/bootable Odin Support * Rework NX-Boot to FAT32 Boot for shared usage between switch and odin * Move shared packages from switch/odin to main packages folder
38 lines
1.0 KiB
Makefile
38 lines
1.0 KiB
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
|
|
|
|
if [ "${PROJECT}" = "L4T" ];then
|
|
PKG_DEPENDS_INIT+=" tegra-bsp:init"
|
|
fi
|
|
|
|
if [ "${BOOTLOADER}" = "switch-bootloader" ]; then
|
|
PKG_DEPENDS_INIT+=" switch-bootloader:init"
|
|
fi
|
|
|
|
if [ "${BOOTLOADER}" = "odin-bootloader" ]; then
|
|
PKG_DEPENDS_INIT+=" odin-bootloader:init"
|
|
fi
|
|
|
|
for i in ${PKG_DEPENDS_INIT}; do
|
|
PKG_NEED_UNPACK+=" $(get_pkg_directory ${i})"
|
|
done
|