From db6a5663ef96f499d79ce9f68e44892f4d70abe9 Mon Sep 17 00:00:00 2001 From: kerta1n <36344851+kerta1n@users.noreply.github.com> Date: Thu, 28 Dec 2023 19:29:32 -0500 Subject: [PATCH 1/2] Update README.md Update make command --- openwrt/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openwrt/README.md b/openwrt/README.md index 4449596..8a87953 100644 --- a/openwrt/README.md +++ b/openwrt/README.md @@ -104,13 +104,13 @@ $ ./scripts/feeds install -a #### Build In `make menuconfig` navigate to `Sound/snapcast` and select `Snapclient` -Also make sure to select your device in the target settings. +Also make sure to select your device by editing the makefile in the directory. ``` $ cd $ make defconfig $ make menuconfig -$ make +$ make package/snapcast/compile ``` The packaged `ipk` file is in From 1ef92abfab10b72e4a481201c6e5111f72ec97f8 Mon Sep 17 00:00:00 2001 From: kerta1n <36344851+kerta1n@users.noreply.github.com> Date: Thu, 28 Dec 2023 20:38:18 -0500 Subject: [PATCH 2/2] Update Makefile Commenting out line #112 gets rid of an error when compiling using the instructions in openwrt/snapcast/README.md. --- openwrt/snapcast/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openwrt/snapcast/Makefile b/openwrt/snapcast/Makefile index 0169cf0..72ac929 100644 --- a/openwrt/snapcast/Makefile +++ b/openwrt/snapcast/Makefile @@ -109,7 +109,7 @@ define Package/snapclient/install $(INSTALL_DIR) $(1)/etc/init.d $(INSTALL_BIN) ./files/snapclient.init $(1)/etc/init.d/snapclient $(INSTALL_DIR) $(1)/etc/default - $(INSTALL_BIN) $(PKG_BUILD_DIR)/debian/snapclient.default $(1)/etc/default/snapclient +# $(INSTALL_BIN) $(PKG_BUILD_DIR)/debian/snapclient.default $(1)/etc/default/snapclient endef $(eval $(call BuildPackage,snapserver))