Igor Posted March 11, 2019 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
Igor Posted March 12, 2019 Author 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.
guidol Posted March 12, 2019 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
hjoe Posted March 12, 2019 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.
hjoe Posted March 12, 2019 Posted March 12, 2019 only added the second last printf, and of course the variable initialisation 1
Thewonderer Posted March 13, 2019 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
Thewonderer Posted March 15, 2019 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:
guidol Posted March 15, 2019 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 ?
guidol Posted March 16, 2019 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
AndrewDB Posted March 19, 2019 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
Igor Posted April 20, 2019 Author Posted April 20, 2019 Another update: Improved hotspot management Set proper metrics that default adaptor gets highest routing priority
Igor Posted April 21, 2019 Author Posted April 21, 2019 Desktop package was not installed when changing beta/stable repository. Fixed
Igor Posted May 3, 2019 Author 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
Recommended Posts