initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
config BR2_PACKAGE_RYGEL
bool "rygel"
depends on BR2_USE_WCHAR # gupnp-av
depends on BR2_TOOLCHAIN_HAS_THREADS # gupnp-av
depends on BR2_USE_MMU # gupnp-av
select BR2_PACKAGE_GUPNP_AV
select BR2_PACKAGE_LIBGEE
select BR2_PACKAGE_LIBMEDIAART
select BR2_PACKAGE_SQLITE
help
Rygel is a home media solution (UPnP AV MediaServer) that
allows you to easily share audio, video and pictures to other
devices.
Additionally, media player software may use Rygel to become a
MediaRenderer that may be controlled remotely by a UPnP or
DLNA Controller.
Rygel achieves interoperability with other devices in the
market by trying to conform to the very strict requirements of
DLNA and by converting media on-the-fly to formats that client
devices can handle.
Most Rygel functionality is implemented through a plug-in
mechanism.
https://wiki.gnome.org/Projects/Rygel
if BR2_PACKAGE_RYGEL
choice
prompt "media engine"
default BR2_PACKAGE_RYGEL_MEDIA_ENGINE_SIMPLE
config BR2_PACKAGE_RYGEL_MEDIA_ENGINE_SIMPLE
bool "simple"
config BR2_PACKAGE_RYGEL_MEDIA_ENGINE_GSTREAMER1
bool "gstreamer1"
select BR2_PACKAGE_GDK_PIXBUF
select BR2_PACKAGE_GUPNP_DLNA
select BR2_PACKAGE_GSTREAMER1
select BR2_PACKAGE_GST1_PLUGINS_BASE
endchoice
comment "rygel needs a toolchain w/ wchar, threads"
depends on BR2_USE_MMU
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
endif # BR2_PACKAGE_RYGEL
+37
View File
@@ -0,0 +1,37 @@
#!/bin/sh
NAME=rygel
PIDFILE=/var/run/$NAME.pid
DAEMON=/usr/bin/$NAME
start() {
printf "Starting $NAME: "
start-stop-daemon -S -q -m -b -p $PIDFILE --exec $DAEMON
[ $? = 0 ] && echo "OK" || echo "FAIL"
}
stop() {
printf "Stopping $NAME: "
start-stop-daemon -K -q -p $PIDFILE
[ $? = 0 ] && echo "OK" || echo "FAIL"
}
restart() {
stop
start
}
case "$1" in
start)
start
;;
stop)
stop
;;
restart|reload)
restart
;;
*)
echo "Usage: $0 {start|stop|restart|reload}"
exit 1
esac
exit $?
+6
View File
@@ -0,0 +1,6 @@
# Hash from: http://ftp.gnome.org/pub/gnome/sources/rygel/0.38/rygel-0.38.3.sha256sum:
sha256 08c21a577f7bdad26446a75ffa32778b26842c3b1188165f0b19818559747d00 rygel-0.38.3.tar.xz
# Locally calculated
sha256 dc626520dcd53a22f727af3ee42c770e56c97a64fe3adb063799d8ab032fe551 COPYING
sha256 c7d881be8ae01162510e982a32001446c6d6d18a9cecc89cc41a28bd215a0262 COPYING.logo
+78
View File
@@ -0,0 +1,78 @@
################################################################################
#
# rygel
#
################################################################################
RYGEL_VERSION_MAJOR = 0.38
RYGEL_VERSION = $(RYGEL_VERSION_MAJOR).3
RYGEL_SOURCE = rygel-$(RYGEL_VERSION).tar.xz
RYGEL_SITE = http://ftp.gnome.org/pub/gnome/sources/rygel/$(RYGEL_VERSION_MAJOR)
RYGEL_LICENSE = LGPL-2.1+, CC-BY-SA-3.0 (logo)
RYGEL_LICENSE_FILES = COPYING COPYING.logo
RYGEL_DEPENDENCIES = \
gupnp-av \
libgee \
libmediaart \
sqlite \
$(TARGET_NLS_DEPENDENCIES)
RYGEL_INSTALL_STAGING = YES
RYGEL_CONF_ENV = LIBS=$(TARGET_NLS_LIBS)
RYGEL_CONF_OPTS += \
--disable-apidocs \
--disable-coverage \
--disable-example-plugins \
--enable-external-plugin \
--enable-lms-plugin \
--enable-mpris-plugin \
--enable-ruih-plugin \
--disable-tracker-plugin
ifeq ($(BR2_PACKAGE_GDK_PIXBUF),y)
RYGEL_DEPENDENCIES += gdk-pixbuf
endif
ifeq ($(BR2_PACKAGE_GOBJECT_INTROSPECTION),y)
RYGEL_CONF_OPTS += --enable-introspection
RYGEL_DEPENDENCIES += gobject-introspection
else
RYGEL_CONF_OPTS += --disable-introspection
endif
ifeq ($(BR2_PACKAGE_RYGEL_MEDIA_ENGINE_GSTREAMER1),y)
RYGEL_CONF_OPTS += \
--with-media-engine=gstreamer \
--enable-playbin-plugin \
--enable-media_export-plugin \
--enable-gst-launch-plugin
RYGEL_DEPENDENCIES += \
gupnp-dlna \
gst1-plugins-base \
gstreamer1
else ifeq ($(BR2_PACKAGE_RYGEL_MEDIA_ENGINE_SIMPLE),y)
RYGEL_CONF_OPTS += \
--with-media-engine=simple \
--disable-playbin-plugin \
--disable-media_export-plugin \
--disable-gst-launch-plugin
endif
ifeq ($(BR2_PACKAGE_LIBGTK3_X11),y)
RYGEL_CONF_OPTS += --with-ui
RYGEL_DEPENDENCIES += libgtk3
else
RYGEL_CONF_OPTS += --without-ui
endif
define RYGEL_INSTALL_INIT_SYSV
$(INSTALL) -D -m 0755 package/rygel/S99rygel \
$(TARGET_DIR)/etc/init.d/S99rygel
endef
define RYGEL_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 package/rygel/rygel.service \
$(TARGET_DIR)/usr/lib/systemd/system/rygel.service
endef
$(eval $(autotools-package))
+10
View File
@@ -0,0 +1,10 @@
[Unit]
Description=Rygel DLNA server
After=network.target
[Service]
ExecStart=/usr/bin/rygel
Restart=always
[Install]
WantedBy=multi-user.target