Skip to content

Commit

Permalink
Fix Samba password issue, remove duplicate cpu info, and fix up readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
fewtarius committed Feb 11, 2022
1 parent 714efbb commit def727d
Show file tree
Hide file tree
Showing 8 changed files with 96 additions and 50 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,9 @@ limitations under the License.
## Network Access
* The username for ssh and samba access is "root". The root password is generated during every boot, it can be found in the Network Settings menu.

## Credits
Like any Linux distribution, this project is not the work of one person. It is the work of many persons all over the world who have developed the open source bits without which this project could not exist. Special thanks to 351ELEC, EmuELEC, CoreELEC, LibreELEC, Anbernic, and developers across the ARM handheld community.

## Frequently Asked Questions
* Does JELOS offer any support?
* No. JELOS is something that I develop for fun, it is provided as-is. If you require a distribution with support, I recommend you choose a community supported distribution instead.
Expand Down
6 changes: 6 additions & 0 deletions packages/jelos/sources/autostart/common/007-rootpw
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@

. /etc/profile

if [ ! -d "/storage/.cache/samba" ]
then
mkdir -p /storage/.cache/samba
touch /storage/.cache/samba/smbpasswd
fi

ROTATION=$(get_setting rotate.root.password)
if [ "${ROTATION}" == "0" ]
then
Expand Down
1 change: 0 additions & 1 deletion packages/jelos/sources/scripts/jelos-info
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ echo "SYSTEM INFORMATION:"
echo "OPERATING SYSTEM: ${OS_NAME}"
echo "VERSION: ${OS_VERSION}"
echo "BUILD ID: ${BUILD_ID:0:7}"
echo "CPU: ${V_CPUMODEL1} (${V_CPUNB} Cores)"
echo "ARCHITECTURE: ${V_OSARCH}"
echo "KERNEL: ${V_SYSTEM} (${V_ARCH})"
echo "DISK SPACE:"
Expand Down
1 change: 1 addition & 0 deletions packages/network/samba/config/smb.conf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
load printers = no
enable core files = no
passdb backend = smbpasswd
smb passwd file = /storage/.cache/samba/smbpasswd
smb encrypt = disabled
fruit:model = Xserve

Expand Down
1 change: 0 additions & 1 deletion packages/ui/emulationstation/config/es_systems.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -1209,7 +1209,6 @@
<emulator name="retroarch">
<cores>
<core default="true">pcsx_rearmed</core>
<core>duckstation</core>
<core>swanstation</core>
</cores>
</emulator>
Expand Down
Loading

0 comments on commit def727d

Please sign in to comment.