Igor 2167 Posted March 11, 2019 Share Posted March 11, 2019 apt update && apt -y upgrade 1. armbian-config -> software -> softy Home Assistant smart home suite (https://www.home-assistant.io/hassio) OpenHAB2 smart home suite (https://www.openhab.org) Bug fixes: Syncthing ZSH Internet detection also works behind proxy Cosmetical fixes: UrBackup Transmission Removed: Exagear (EOL) 2. armbian-config -> personal -> mirror New mirror http://mirrors.dotsrc.org/armbian-apt/ & http://mirrors.dotsrc.org/armbian-dl/ 3 Quote Link to post Share on other sites
hjoe 4 Posted March 11, 2019 Share Posted March 11, 2019 The headline still shows "Armbian 5.75 stable" 0 Quote Link to post Share on other sites
Igor 2167 Posted March 12, 2019 Author Share Posted March 12, 2019 13 hours ago, hjoe said: The headline still shows "Armbian 5.75 stable" BSP package, where this info is pulled, hasn't changed. Read https://github.com/armbian/build/pull/1129 for more details about naming problems. 0 Quote Link to post Share on other sites
guidol 271 Posted March 12, 2019 Share Posted March 12, 2019 17 hours ago, hjoe said: The headline still shows "Armbian 5.75 stable" for more information about the versions of your armbian-system-packages you could add the following to your /etc/update-motd.d/10-armbian-header ARMBIAN_bsp=$(more /etc/armbian-release|grep VERSION|cut -f 2 -d '=') ARMBIAN_kernel=$(dpkg -s linux-image-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_uboot=$(dpkg -s linux-u-boot-$BOARD-$BRANCH|grep Version|cut -f 2 -d ' ') ARMBIAN_dtb=$(dpkg -s linux-dtb-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_firmware=$(dpkg -s armbian-firmware|grep Version|cut -f 2 -d ' ') ARMBIAN_config=$(dpkg -s armbian-config|grep Version|cut -f 2 -d ' ') printf 'ARMBIAN bsp : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_bsp" printf 'ARMBIAN kernel : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_kernel" printf 'ARMBIAN u-boot : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_uboot" printf 'ARMBIAN dtb : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_dtb" printf 'ARMBIAN firmware : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_firmware" printf 'ARMBIAN config : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_config" printf '\n' printf 'ARMBIAN kernel : \e[0;91m%s\x1B[0m u-boot : \e[0;91m%s\x1B[0m dtb : \e[0;91m%s\x1B[0m firmware : \e[0;91m%s\x1B[0m config : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_kernel" "$ARMBIAN_uboot" "$ARMBIAN_dtb" "$ARMBIAN_firmware" "$ARMBIAN_config" printf '\n' this will give you the armbian-system-package-informations in different lines or at the end in one line like in the attached image 1 Quote Link to post Share on other sites
hjoe 4 Posted March 12, 2019 Share Posted March 12, 2019 3 hours ago, Igor said: BSP package, where this info is pulled, hasn't changed. Read https://github.com/armbian/build/pull/1129 for more details about naming problems. did read (most of) this thread, Thanks. I just started using Armbian so everything is new. 0 Quote Link to post Share on other sites
hjoe 4 Posted March 12, 2019 Share Posted March 12, 2019 only added the second last printf, and of course the variable initialisation 1 Quote Link to post Share on other sites
Thewonderer 1 Posted March 13, 2019 Share Posted March 13, 2019 I like the armbian-system-packages armbian header information. Will modify my rock64 to output the additional information. Thanks for the tip! On 3/12/2019 at 9:31 PM, guidol said: for more information about the versions of your armbian-system-packages you could add the following to your /etc/update-motd.d/10-armbian-header ARMBIAN_bsp=$(more /etc/armbian-release|grep VERSION|cut -f 2 -d '=') ARMBIAN_kernel=$(dpkg -s linux-image-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_uboot=$(dpkg -s linux-u-boot-$BOARD-$BRANCH|grep Version|cut -f 2 -d ' ') ARMBIAN_dtb=$(dpkg -s linux-dtb-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_firmware=$(dpkg -s armbian-firmware|grep Version|cut -f 2 -d ' ') ARMBIAN_config=$(dpkg -s armbian-config|grep Version|cut -f 2 -d ' ') printf 'ARMBIAN bsp : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_bsp" printf 'ARMBIAN kernel : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_kernel" printf 'ARMBIAN u-boot : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_uboot" printf 'ARMBIAN dtb : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_dtb" printf 'ARMBIAN firmware : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_firmware" printf 'ARMBIAN config : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_config" printf '\n' printf 'ARMBIAN kernel : \e[0;91m%s\x1B[0m u-boot : \e[0;91m%s\x1B[0m dtb : \e[0;91m%s\x1B[0m firmware : \e[0;91m%s\x1B[0m config : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_kernel" "$ARMBIAN_uboot" "$ARMBIAN_dtb" "$ARMBIAN_firmware" "$ARMBIAN_config" printf '\n' this will give you the armbian-system-package-informations in different lines or at the end in one line like in the attached image 1 Quote Link to post Share on other sites
Thewonderer 1 Posted March 15, 2019 Share Posted March 15, 2019 I've added the setting to the header but I don't get the Kernel or DTB information. Not sure why. I put your additional settings at the end of the file. On 3/12/2019 at 9:31 PM, guidol said: for more information about the versions of your armbian-system-packages you could add the following to your /etc/update-motd.d/10-armbian-header ARMBIAN_bsp=$(more /etc/armbian-release|grep VERSION|cut -f 2 -d '=') ARMBIAN_kernel=$(dpkg -s linux-image-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_uboot=$(dpkg -s linux-u-boot-$BOARD-$BRANCH|grep Version|cut -f 2 -d ' ') ARMBIAN_dtb=$(dpkg -s linux-dtb-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_firmware=$(dpkg -s armbian-firmware|grep Version|cut -f 2 -d ' ') ARMBIAN_config=$(dpkg -s armbian-config|grep Version|cut -f 2 -d ' ') printf 'ARMBIAN bsp : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_bsp" printf 'ARMBIAN kernel : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_kernel" printf 'ARMBIAN u-boot : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_uboot" printf 'ARMBIAN dtb : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_dtb" printf 'ARMBIAN firmware : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_firmware" printf 'ARMBIAN config : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_config" printf '\n' printf 'ARMBIAN kernel : \e[0;91m%s\x1B[0m u-boot : \e[0;91m%s\x1B[0m dtb : \e[0;91m%s\x1B[0m firmware : \e[0;91m%s\x1B[0m config : \e[0;91m%s\x1B[0m\n' "$ARMBIAN_kernel" "$ARMBIAN_uboot" "$ARMBIAN_dtb" "$ARMBIAN_firmware" "$ARMBIAN_config" printf '\n' this will give you the armbian-system-package-informations in different lines or at the end in one line like in the attached image On 3/12/2019 at 9:31 PM, guidol said: 0 Quote Link to post Share on other sites
guidol 271 Posted March 15, 2019 Share Posted March 15, 2019 if config, u-boot and firmware does work then kernel and dtb should also work.. whats the result of ECHO $BRANCH and ECHO $LINUXFAMILY ? 0 Quote Link to post Share on other sites
guidol 271 Posted March 16, 2019 Share Posted March 16, 2019 Did create a more compact version for me (and you?) nano /etc/update-motd.d/10-armbian-header ARMBIAN_bsp=$(more /etc/armbian-release|grep VERSION|cut -f 2 -d '=') ARMBIAN_kernel=$(dpkg -s linux-image-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_uboot=$(dpkg -s linux-u-boot-$BOARD-$BRANCH|grep Version|cut -f 2 -d ' ') ARMBIAN_dtb=$(dpkg -s linux-dtb-$BRANCH-$LINUXFAMILY|grep Version|cut -f 2 -d ' ') ARMBIAN_firmware=$(dpkg -s armbian-firmware|grep Version|cut -f 2 -d ' ') ARMBIAN_config=$(dpkg -s armbian-config|grep Version|cut -f 2 -d ' ') printf '\n' printf 'pkg-version kernel[\e[0;91m%s\x1B[0m] u-boot[\e[0;91m%s\x1B[0m] dtb[\e[0;91m%s\x1B[0m] firmware[\e[0;91m%s\x1B[0m] config[\e[0;91m%s\x1B[0m]\n' "$ARMBIAN_kernel" "$ARMBIAN_uboot" "$ARMBIAN_dtb" "$ARMBIAN_firmware" "$ARMBIAN_config" printf '\n' 2 Quote Link to post Share on other sites
AndrewDB 32 Posted March 19, 2019 Share Posted March 19, 2019 On 3/12/2019 at 12:31 PM, guidol said: for more information about the versions of your armbian-system-packages you could add the following to your /etc/update-motd.d/10-armbian-header That was an excellent tip, thank you very much! 1 Quote Link to post Share on other sites
Igor 2167 Posted April 20, 2019 Author Share Posted April 20, 2019 Another update: Improved hotspot management Set proper metrics that default adaptor gets highest routing priority 0 Quote Link to post Share on other sites
Igor 2167 Posted April 21, 2019 Author Share Posted April 21, 2019 Desktop package was not installed when changing beta/stable repository. Fixed 0 Quote Link to post Share on other sites
Igor 2167 Posted May 3, 2019 Author Share Posted May 3, 2019 v5.84 Added CPU speed and governor management Fixed TVheadend install on Ubuntu Improving two-factor authentication: once enabled, token is one for all local users Added Meson64 overlay config (hardware configuration) 1 Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.