03-17-2021, 07:00 PM
cannot wait, so i tried to build a 7.1 image with the recent /other/build/build_recipe.txt
found some things:
.... now going on with compiling... will write, if more things happen
regards
tonno
found some things:
Code:
.
.
.
4. Download moOde application sources and configs.
//
// NOTE: Since the zip-file is too big for the compressed image we have to resize first
//
cd ~
wget https://raw.githubusercontent.com/moode-player/moode/develop/www/command/resizefs.sh
wget https://raw.githubusercontent.com/moode-player/moode/develop/boot/config.txt.default
wget https://raw.githubusercontent.com/moode-player/moode/develop/boot/moodecfg.ini.default
5. Expand the root partition to 3.5GB.
sudo chmod 0755 ./resizefs.sh
sudo sed -i "/PART_END=/c\PART_END=+4000M" ./resizefs.sh
sudo ./resizefs.sh start
sudo cp ./config.txt.default /boot/config.txt
sudo cp ./moodecfg.ini.default /boot/
sudo rm ./resizefs.sh
sudo rm ./config.txt.default
sudo rm ./moodecfg.ini.default
# SR1
sudo reboot
wget https://github.com/moode-player/moode/archive/develop.zip
unzip -o -q ./develop.zip
rm -f ./develop.zip
mv moode-develop moode
.
.
.
error:
163 sudo tar xfz /meson-0.55.0.tar.gz
correct:
163 sudo tar xfz ./meson-0.55.0.tar.gz
error:
169 sudo cp ./moode/other/alsacap/alssacap /usr/local/bin
correct
169 sudo cp ./moode/other/alsacap/alsacap /usr/local/bin
error
219 sudo cp ./moode/other/bluetooth/bluetooth/bluez-5.50.tar.xz ./
correct
219 sudo cp ./moode/other/bluetooth/bluez-5.50.tar.xz ./
.... now going on with compiling... will write, if more things happen
regards
tonno