Merge pull request #127 from fbelavenuto/root-passwd

reverting remove root password
This commit is contained in:
Fabio Belavenuto 2022-08-22 21:45:41 -03:00 committed by GitHub
commit c6ec3a7f22
2 changed files with 3 additions and 1 deletions

View File

@ -154,7 +154,7 @@ while true; do
COUNT=$((${COUNT}+1)) COUNT=$((${COUNT}+1))
IP=`ip route get 1.1.1.1 2>/dev/null | awk '{print$7}'` IP=`ip route get 1.1.1.1 2>/dev/null | awk '{print$7}'`
if [ -n "${IP}" ]; then if [ -n "${IP}" ]; then
echo -en "OK\nAccess \033[1;34mhttp://${IP}:7681\033[0m to configure the loader via web terminal or use SSH" echo -en "OK\nAccess \033[1;34mhttp://${IP}:7681\033[0m to configure the loader via web terminal"
break break
fi fi
echo -n "." echo -n "."
@ -166,6 +166,7 @@ echo
echo -e "Call \033[1;32mmenu.sh\033[0m to configure loader" echo -e "Call \033[1;32mmenu.sh\033[0m to configure loader"
echo echo
echo -e "User config is on \033[1;32m${USER_CONFIG_FILE}\033[0m" echo -e "User config is on \033[1;32m${USER_CONFIG_FILE}\033[0m"
echo -e "Default SSH Root password is \033[1;31mRedp1lL-1s-4weSomE\033[0m"
echo echo
mkdir -p "${ADDONS_PATH}" mkdir -p "${ADDONS_PATH}"

View File

@ -5,6 +5,7 @@ BR2_TARGET_GENERIC_HOSTNAME="arpl"
BR2_TARGET_GENERIC_ISSUE="Automated RedPill loader" BR2_TARGET_GENERIC_ISSUE="Automated RedPill loader"
BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_EUDEV=y
BR2_ROOTFS_MERGED_USR=y BR2_ROOTFS_MERGED_USR=y
BR2_TARGET_GENERIC_ROOT_PASSWD="Redp1lL-1s-4weSomE"
BR2_SYSTEM_BIN_SH_BASH=y BR2_SYSTEM_BIN_SH_BASH=y
BR2_TARGET_TZ_INFO=y BR2_TARGET_TZ_INFO=y
BR2_ROOTFS_OVERLAY="board/arpl/overlayfs" BR2_ROOTFS_OVERLAY="board/arpl/overlayfs"