Skip to content

Commit 6c8eeb2

Browse files
authored
Merge pull request #1425 from kernelkit/mdns-fixes
Mdns fixes
2 parents b078a57 + 784be61 commit 6c8eeb2

77 files changed

Lines changed: 3397 additions & 1116 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
config BR2_PACKAGE_ALDER_ALDER
22
bool "Alder"
33
depends on BR2_aarch64
4+
select BR2_PACKAGE_LINUX_FIRMWARE_INSIDE_SECURE_MINIFW
45
help
56
Alder
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
config BR2_PACKAGE_MARVELL_CN9130_CRB
22
bool "Marvell CN9130-CRB"
33
depends on BR2_aarch64
4+
select BR2_PACKAGE_LINUX_FIRMWARE_INSIDE_SECURE_MINIFW
45
help
56
Customer Reference Board for CN9130
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
config BR2_PACKAGE_MARVELL_ESPRESSOBIN
22
bool "Marvell ESPRESSObin"
33
depends on BR2_aarch64
4+
select BR2_PACKAGE_LINUX_FIRMWARE_INSIDE_SECURE_MINIFW
45
help
56
Marvell ESPRESSObin
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
config BR2_PACKAGE_STYX_DCP_SC_28P
22
bool "Styx DCP-SC-28P"
33
depends on BR2_aarch64
4+
select BR2_PACKAGE_LINUX_FIRMWARE_INSIDE_SECURE_MINIFW
45
help
56
Styx DCP-SC-28P

board/common/rootfs/etc/nginx/available/netbrowse.conf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
server {
2+
listen 80;
3+
listen [::]:80;
4+
server_name network.local;
5+
6+
location / {
7+
include /etc/nginx/netbrowse.conf;
8+
}
9+
}
10+
111
server {
212
listen 443 ssl;
313
listen [::]:443 ssl;

board/common/rootfs/usr/libexec/infix/hostname

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ if ! runlevel >/dev/null 2>&1; then
6262
fi
6363

6464
initctl -bq status lldpd && lldpcli configure system hostname "$new_hostname" 2>/dev/null
65-
initctl -bq status mdns && avahi-set-host-name "$new_hostname" 2>/dev/null
66-
initctl -bq touch netbrowse 2>/dev/null
65+
initctl -bq touch mdns-alias 2>/dev/null
66+
initctl -bq touch netbrowse 2>/dev/null
6767

6868
# If called from dhcp script we need to reload to activate new name in syslogd
6969
# Otherwise we're called from confd, which does the reload when all is done.

configs/aarch64_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT=y
5050
BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT=y
5151
BR2_PACKAGE_UBOOT_TOOLS_FIT_CHECK_SIGN=y
5252
BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE=y
53-
BR2_PACKAGE_PYTHON_GUNICORN=y
5453
BR2_PACKAGE_LIBSSH_OPENSSL=y
5554
BR2_PACKAGE_LIBSSH2=y
5655
BR2_PACKAGE_LIBSSH2_OPENSSL=y

configs/arm_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT=y
5252
BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT=y
5353
BR2_PACKAGE_UBOOT_TOOLS_FIT_CHECK_SIGN=y
5454
BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE=y
55-
BR2_PACKAGE_PYTHON_GUNICORN=y
5655
BR2_PACKAGE_LIBSSH2=y
5756
BR2_PACKAGE_LIBOPENSSL_BIN=y
5857
BR2_PACKAGE_LIBINPUT=y

configs/riscv64_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT=y
6060
BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT=y
6161
BR2_PACKAGE_UBOOT_TOOLS_FIT_CHECK_SIGN=y
6262
BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE=y
63-
BR2_PACKAGE_PYTHON_GUNICORN=y
6463
BR2_PACKAGE_LIBSSH_OPENSSL=y
6564
BR2_PACKAGE_LIBSSH2=y
6665
BR2_PACKAGE_LIBSSH2_OPENSSL=y

configs/x86_64_defconfig

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ BR2_PACKAGE_UBOOT_TOOLS_FIT_SUPPORT=y
4949
BR2_PACKAGE_UBOOT_TOOLS_FIT_SIGNATURE_SUPPORT=y
5050
BR2_PACKAGE_UBOOT_TOOLS_FIT_CHECK_SIGN=y
5151
BR2_PACKAGE_UBOOT_TOOLS_MKENVIMAGE=y
52-
BR2_PACKAGE_PYTHON_GUNICORN=y
5352
BR2_PACKAGE_LIBSSH_OPENSSL=y
5453
BR2_PACKAGE_LIBSSH2=y
5554
BR2_PACKAGE_LIBSSH2_OPENSSL=y

0 commit comments

Comments
 (0)