This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree".
The branch, next has been updated via bbbe9111da6aaef3b0855bd85867accc5275e20e (commit) via 113750aae50a352a234a72527ed22729c0fb2bcc (commit) from ec6f65d9cc6be9863f39b896b479907f96416c4e (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit bbbe9111da6aaef3b0855bd85867accc5275e20e Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 4 09:12:05 2025 +0000
mympd: set loglevel 2
this silence the log to errors only.
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
commit 113750aae50a352a234a72527ed22729c0fb2bcc Author: Arne Fitzenreiter arne_f@ipfire.org Date: Sat Jan 4 09:10:04 2025 +0000
u-boot: fix usb boot on rpi4
Signed-off-by: Arne Fitzenreiter arne_f@ipfire.org
-----------------------------------------------------------------------
Summary of changes: config/u-boot/boot.cmd | 4 ++++ lfs/mympd | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-)
Difference in files: diff --git a/config/u-boot/boot.cmd b/config/u-boot/boot.cmd index 5faa3a1ec..61c50d064 100644 --- a/config/u-boot/boot.cmd +++ b/config/u-boot/boot.cmd @@ -7,6 +7,10 @@ if test "${board}" = "ten64"; then bootefi ${kernel_addr_r} ${fdt_addr_r} fi;
+if test ${boot_dev} = ""; then + setenv boot_dev ${devtype} +fi; + if test ${boot_dev} = ""; then setenv boot_dev mmc; setenv root_dev /dev/mmcblk0p3; diff --git a/lfs/mympd b/lfs/mympd index 3372af620..4e9b174b6 100644 --- a/lfs/mympd +++ b/lfs/mympd @@ -1,7 +1,7 @@ ############################################################################### # # # IPFire.org - A linux based firewall # -# Copyright (C) 2007-2024 IPFire Team info@ipfire.org # +# Copyright (C) 2007-2025 IPFire Team info@ipfire.org # # # # This program is free software: you can redistribute it and/or modify # # it under the terms of the GNU General Public License as published by # @@ -34,7 +34,7 @@ DL_FROM = $(URL_IPFIRE) DIR_APP = $(DIR_SRC)/$(THISAPP) TARGET = $(DIR_INFO)/$(THISAPP) PROG = mympd -PAK_VER = 8 +PAK_VER = 9
DEPS = mpd libmpdclient
@@ -95,6 +95,7 @@ $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) mkdir -p /var/lib/mympd/config echo false > /var/lib/mympd/config/http echo 8800 > /var/lib/mympd/config/ssl_port + echo 2 > /var/lib/mympd/config/loglovel mkdir -p /var/lib/mympd/state echo /var/mp3 > /var/lib/mympd/state/music_directory chown nobody:nobody -R /var/lib/mympd
hooks/post-receive -- IPFire 2.x development tree