-
Notifications
You must be signed in to change notification settings - Fork 129
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from hifiberry/202003
March 2020 release
- Loading branch information
Showing
184 changed files
with
2,719 additions
and
483 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,5 @@ a | |
b | ||
notify | ||
publish-files | ||
publish-dev | ||
update-all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/dev/root / ext2 rw,noatime 0 1 | ||
/dev/root / ext4 rw,noatime 0 1 | ||
proc /proc proc defaults 0 0 | ||
devpts /dev/pts devpts defaults,gid=5,mode=620,ptmxmode=0666 0 0 | ||
tmpfs /dev/shm tmpfs mode=0777 0 0 | ||
tmpfs /tmp tmpfs mode=1777 0 0 | ||
tmpfs /run tmpfs mode=0755,nosuid,nodev 0 0 | ||
sysfs /sys sysfs defaults 0 0 | ||
/dev/mmcblk0p1 /boot vfat defaults 0 0 | ||
/dev/mmcblk0p1 /boot vfat defaults,noatime,quiet 0 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,132 @@ | ||
diff -urb buildroot-dev/package/gobject-introspection/gobject-introspection.mk brdev-working/package/gobject-introspection/gobject-introspection.mk | ||
--- buildroot-dev/package/gobject-introspection/gobject-introspection.mk 2020-03-20 07:35:48.783430050 +0000 | ||
+++ brdev-working/package/gobject-introspection/gobject-introspection.mk 2020-03-20 06:56:37.731416596 +0000 | ||
@@ -18,6 +18,8 @@ | ||
host-gobject-introspection \ | ||
host-prelink-cross \ | ||
host-qemu \ | ||
+ gstreamer1 \ | ||
+ gst1-plugins-base \ | ||
libffi \ | ||
libglib2 \ | ||
python3 \ | ||
@@ -56,6 +58,9 @@ | ||
GOBJECT_INTROSPECTION_CONF_OPTS += -Dcairo=disabled | ||
endif | ||
|
||
+GOBJECT_INTROSPECTION_DEPENDENCIES += gstreamer1 gst1-plugins-base | ||
+GOBJECT_INTROSPECTION_CONF_OPTS += -Dgstreamer1=enabled | ||
+ | ||
# GI_SCANNER_DISABLE_CACHE=1 prevents g-ir-scanner from writing cache data to ${HOME} | ||
GOBJECT_INTROSPECTION_CONF_ENV = \ | ||
GI_SCANNER_DISABLE_CACHE=1 | ||
diff -urb buildroot-dev/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk brdev-working/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk | ||
--- buildroot-dev/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk 2020-03-20 07:35:48.787430009 +0000 | ||
+++ brdev-working/package/gstreamer1/gst1-plugins-bad/gst1-plugins-bad.mk 2020-03-19 20:00:14.274281083 +0000 | ||
@@ -23,7 +23,7 @@ | ||
-Dwinks=disabled \ | ||
-Dandroidmedia=disabled \ | ||
-Dapplemedia=disabled \ | ||
- -Dintrospection=disabled \ | ||
+ -Dintrospection=enabled \ | ||
-Dgobject-cast-checks=disabled \ | ||
-Dglib-asserts=disabled \ | ||
-Dglib-checks=disabled | ||
diff -urb buildroot-dev/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk brdev-working/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk | ||
--- buildroot-dev/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk 2020-03-20 07:35:48.787430009 +0000 | ||
+++ brdev-working/package/gstreamer1/gst1-plugins-base/gst1-plugins-base.mk 2020-03-20 06:30:57.747235646 +0000 | ||
@@ -18,7 +18,7 @@ | ||
-Dglib-asserts=disabled \ | ||
-Dglib-checks=disabled \ | ||
-Dgtk_doc=disabled \ | ||
- -Dintrospection=disabled | ||
+ -Dintrospection=enabled | ||
|
||
# Options which require currently unpackaged libraries | ||
GST1_PLUGINS_BASE_CONF_OPTS += \ | ||
@@ -32,7 +32,10 @@ | ||
GST1_PLUGINS_BASE_CONF_OPTS += -Dtools=disabled | ||
endif | ||
|
||
-GST1_PLUGINS_BASE_DEPENDENCIES = gstreamer1 $(TARGET_NLS_DEPENDENCIES) | ||
+GST1_PLUGINS_BASE_DEPENDENCIES = gstreamer1 $(TARGET_NLS_DEPENDENCIES) \ | ||
+ host-gstreamer1 \ | ||
+ host-gobject-introspection \ | ||
+ gobject-introspection | ||
|
||
GST1_PLUGINS_BASE_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS) | ||
|
||
@@ -280,3 +283,5 @@ | ||
endif | ||
|
||
$(eval $(meson-package)) | ||
+$(eval $(host-meson-package)) | ||
+ | ||
diff -urb buildroot-dev/package/gstreamer1/gstreamer1/gstreamer1.mk brdev-working/package/gstreamer1/gstreamer1/gstreamer1.mk | ||
--- buildroot-dev/package/gstreamer1/gstreamer1/gstreamer1.mk 2020-03-20 07:35:48.787430009 +0000 | ||
+++ brdev-working/package/gstreamer1/gstreamer1/gstreamer1.mk 2020-03-20 07:32:26.025498231 +0000 | ||
@@ -16,7 +16,7 @@ | ||
-Dtests=disabled \ | ||
-Dbenchmarks=disabled \ | ||
-Dgtk_doc=disabled \ | ||
- -Dintrospection=disabled \ | ||
+ -Dintrospection=enabled \ | ||
-Dglib-asserts=disabled \ | ||
-Dglib-checks=disabled \ | ||
-Dgobject-cast-checks=disabled \ | ||
@@ -31,11 +31,12 @@ | ||
host-bison \ | ||
host-flex \ | ||
host-pkgconf \ | ||
+ host-gobject-introspection \ | ||
libglib2 \ | ||
$(if $(BR2_PACKAGE_LIBUNWIND),libunwind) \ | ||
- $(if $(BR2_PACKAGE_VALGRIND),valgrind) \ | ||
$(TARGET_NLS_DEPENDENCIES) | ||
|
||
GSTREAMER1_LDFLAGS = $(TARGET_LDFLAGS) $(TARGET_NLS_LIBS) | ||
|
||
$(eval $(meson-package)) | ||
+$(eval $(host-meson-package)) | ||
diff -urb buildroot-dev/package/nodejs/nodejs.mk brdev-working/package/nodejs/nodejs.mk | ||
--- buildroot-dev/package/nodejs/nodejs.mk 2020-03-20 07:35:48.859429275 +0000 | ||
+++ brdev-working/package/nodejs/nodejs.mk 2020-03-19 06:30:08.960598003 +0000 | ||
@@ -63,7 +63,6 @@ | ||
--shared-openssl \ | ||
--shared-openssl-includes=$(HOST_DIR)/include/openssl \ | ||
--shared-openssl-libpath=$(HOST_DIR)/lib \ | ||
- --shared-zlib \ | ||
--no-cross-compiling \ | ||
--with-intl=small-icu \ | ||
) | ||
diff -urb buildroot-dev/package/python-pycairo/python-pycairo.mk brdev-working/package/python-pycairo/python-pycairo.mk | ||
--- buildroot-dev/package/python-pycairo/python-pycairo.mk 2020-03-20 07:35:48.899428867 +0000 | ||
+++ brdev-working/package/python-pycairo/python-pycairo.mk 2020-03-19 06:30:08.960598003 +0000 | ||
@@ -8,8 +8,16 @@ | ||
PYTHON_PYCAIRO_SOURCE = pycairo-$(PYTHON_PYCAIRO_VERSION).tar.gz | ||
PYTHON_PYCAIRO_SITE = https://files.pythonhosted.org/packages/3c/1a/c0478ecab31baae50fda9956547788afbd0ca563adc52c9b03cab30f17eb | ||
PYTHON_PYCAIRO_SETUP_TYPE = setuptools | ||
-PYTHON_PYCAIRO_DEPENDENCIES = cairo | ||
+PYTHON_PYCAIRO_DEPENDENCIES = cairo host-cairo | ||
PYTHON_PYCAIRO_LICENSE = LGPL-2.1 or MPL-1.1 | ||
PYTHON_PYCAIRO_LICENSE_FILES = COPYING COPYING-LGPL-2.1 COPYING-MPL-1.1 | ||
|
||
+HOST_PYTHON_PYCAIRO_ENV = \ | ||
+ PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1 \ | ||
+ PKG_CONFIG_ALLOW_SYSTEM_LIBS=1 \ | ||
+ PKG_CONFIG="$(PKG_CONFIG_HOST_BINARY)" \ | ||
+ PKG_CONFIG_SYSROOT_DIR="/" \ | ||
+ PKG_CONFIG_LIBDIR="$(HOST_DIR)/lib/pkgconfig:$(HOST_DIR)/share/pkgconfig" | ||
+ | ||
$(eval $(python-package)) | ||
+$(eval $(host-python-package)) | ||
Only in brdev-working/utils: package | ||
diff -urb buildroot-dev/utils/scanpypi brdev-working/utils/scanpypi | ||
--- buildroot-dev/utils/scanpypi 2020-03-20 07:35:48.991427929 +0000 | ||
+++ brdev-working/utils/scanpypi 2020-03-19 08:42:35.293726023 +0000 | ||
@@ -1,4 +1,4 @@ | ||
-#!/usr/bin/env python | ||
+#!/usr/bin/env python3 | ||
""" | ||
|
||
Utility for building Buildroot packages for existing PyPI packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
root=/dev/mmcblk0p2 rootwait console=tty1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
config BR2_PACKAGE_DISABLE_SAMBA | ||
bool "disable-samba" | ||
help | ||
do not start smbd | ||
depends on BR2_PACKAGE_SAMBA4 | ||
|
Oops, something went wrong.