User:Alexey Vazhnov/PinePhone notes: Difference between revisions
License: CC-BY international 4.0 or newer |
Copy from my personal cheat sheet |
||
Line 1: | Line 1: | ||
== Hardware == | |||
My version: 3 GB RAM, 32 GB eMMC + dock, Mobian edition — hardware revision is probably https://wiki.pine64.org/wiki/PinePhone_v1.2b USB OTG should work. | |||
eMMC state: | |||
<pre> | |||
# mmc extcsd read /dev/mmcblk2 | |||
============================================= | |||
Extended CSD rev 1.8 (MMC 5.1) | |||
============================================= | |||
… | |||
eMMC Life Time Estimation A [EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_A]: 0x01 | |||
eMMC Life Time Estimation B [EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_B]: 0x01 | |||
</pre> | |||
lscpu: | |||
<pre> | |||
Architecture: aarch64 | |||
CPU op-mode(s): 32-bit, 64-bit | |||
Byte Order: Little Endian | |||
CPU(s): 4 | |||
On-line CPU(s) list: 0-3 | |||
Thread(s) per core: 1 | |||
Core(s) per socket: 4 | |||
Socket(s): 1 | |||
Vendor ID: ARM | |||
Model: 4 | |||
Model name: Cortex-A53 | |||
Stepping: r0p4 | |||
CPU max MHz: 1152,0000 | |||
CPU min MHz: 480,0000 | |||
BogoMIPS: 48.00 | |||
Vulnerability Itlb multihit: Not affected | |||
Vulnerability L1tf: Not affected | |||
Vulnerability Mds: Not affected | |||
Vulnerability Meltdown: Not affected | |||
Vulnerability Spec store bypass: Not affected | |||
Vulnerability Spectre v1: Mitigation; __user pointer sanitization | |||
Vulnerability Spectre v2: Not affected | |||
Vulnerability Srbds: Not affected | |||
Vulnerability Tsx async abort: Not affected | |||
Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid | |||
</pre> | |||
=== PMIC AXP803 === | |||
See also: https://github.com/vazhnov/sunxi-axp209 | |||
Common for Mobian and postmarketOS (but postmarketOS has no modules, they are probably compiled into the kernel). | |||
<pre> | |||
$ lsmod| grep axp | |||
axp20x_adc 20480 0 | |||
axp20x_pek 16384 0 | |||
axp20x_battery 16384 0 | |||
axp20x_usb_power 16384 0 | |||
industrialio 86016 10 stk3310,axp20x_battery,industrialio_triggered_buffer,st_sensors,inv_mpu6050,kfifo_buf,st_magn_i2c,st_magn,axp20x_usb_power,axp20x_adc | |||
$ ls -lAF /sys/class/power_supply/axp20x-battery/ | |||
total 0 | |||
-r--r--r-- 1 root root 4096 May 15 21:47 capacity | |||
-rw-r--r-- 1 root root 4096 May 16 01:12 constant_charge_current | |||
-rw-r--r-- 1 root root 4096 May 16 01:12 constant_charge_current_max | |||
-r--r--r-- 1 root root 4096 May 15 21:47 current_now | |||
lrwxrwxrwx 1 root root 0 May 16 01:12 device -> ../../../axp20x-battery-power-supply/ | |||
-r--r--r-- 1 root root 4096 May 16 01:12 health | |||
drwxr-xr-x 3 root root 0 May 15 21:47 hwmon4/ | |||
-r--r--r-- 1 root root 4096 May 16 01:12 online | |||
drwxr-xr-x 2 root root 0 May 16 01:11 power/ | |||
-r--r--r-- 1 root root 4096 May 15 21:47 present | |||
-r--r--r-- 1 root root 4096 May 15 21:47 status | |||
lrwxrwxrwx 1 root root 0 May 15 21:47 subsystem -> ../../../../../../../../class/power_supply/ | |||
-r--r--r-- 1 root root 4096 May 15 21:47 type | |||
-rw-r--r-- 1 root root 4096 May 15 21:47 uevent | |||
-rw-r--r-- 1 root root 4096 May 15 21:47 voltage_max_design | |||
-rw-r--r-- 1 root root 4096 May 16 01:12 voltage_min_design | |||
-r--r--r-- 1 root root 4096 May 15 21:47 voltage_now | |||
drwxr-xr-x 2 root root 0 May 15 21:47 wakeup10/ | |||
$ cat /sys/class/power_supply/axp20x-battery/status | |||
Discharging | |||
$ cat /sys/class/power_supply/axp20x-battery/type | |||
Battery | |||
$ cat /sys/class/power_supply/axp20x-battery/voltage_max_design | |||
4200000 | |||
$ cat /sys/class/power_supply/axp20x-battery/voltage_min_design | |||
2900000 | |||
$ cat /sys/class/power_supply/axp20x-battery/voltage_now | |||
4161000 | |||
$ cat /sys/class/power_supply/axp20x-battery/current_now | |||
117000 | |||
$ cat /sys/class/power_supply/axp20x-battery/capacity | |||
98 | |||
</pre> | |||
== Software == | |||
=== Mobian === | |||
Debian 11 Bullseye + Wayland + Phosh (Gnome). | |||
<code class="F">/boot</code> = ~500 MB, ext4. <code class="F">/</code> = f2fs, auto-resize on first boot. | |||
After installation, it took about 3.5 GB space in /. ~480 MB RAM used after boot. | |||
Using zswap(?) by default. | |||
Repositories: | |||
<pre> | |||
deb http://deb.debian.org/debian bullseye main | |||
deb http://repo.mobian-project.org/ bullseye main non-free | |||
</pre> | |||
Linux kernel: | |||
<pre> | |||
Linux mobian 5.10-sunxi64 #2 SMP PREEMPT Tue Jan 12 09:55:56 UTC 2021 aarch64 GNU/Linux | |||
</pre> | |||
<code class="F">/proc/cmdline</code>: ? | |||
Is using Phosh: | |||
<pre> | |||
$ ps -eF|grep -i phosh | |||
mobian 498 1 0 126594 123580 1 15:35 tty7 00:02:12 /usr/bin/phoc -C /usr/share/phosh/phoc.ini -E bash -lc 'gnome-session --builtin --disable-acceleration-check --session=phosh' | |||
mobian 658 498 0 516 496 1 15:35 tty7 00:00:00 /bin/sh -c bash -lc 'gnome-session --builtin --disable-acceleration-check --session=phosh' | |||
mobian 659 658 0 110857 15576 2 15:35 tty7 00:00:01 /usr/libexec/gnome-session-binary --systemd --builtin --disable-acceleration-check --session=phosh | |||
mobian 705 659 0 220653 114348 1 15:35 tty7 00:01:12 /usr/libexec/phosh | |||
</pre> | |||
Advantages/pros: | |||
* Hardware works fine: Wi-Fi, loud speaker, charger, …; | |||
* Redshift works; | |||
* Smooth interface in Firefox ESR, <code class="P">webext-ublock-origin-firefox</code>, additional settings in package <code class="P">firefox-esr-mobile-config</code>, source https://gitlab.com/postmarketOS/mobile-config-firefox; | |||
* It is possibly to switch off/reboot system from menu; | |||
Disadvantages/drawbacks/cons: | |||
* Camera clicks 4 times after login; | |||
* Only one button; | |||
* No button to close applications; | |||
* Scaling is only 100% and 200%; | |||
* Virtual keyboard <em>squeekboard</em> is not comfortable; | |||
* Application Settings can forget about screen size and show only part of self; | |||
* <em>Automatic brightness</em> works too fast; | |||
* Automatic rotation works instantly without a delay — bad when sensor is between of two states + noise, need at least some Schmitt trigger; | |||
* No automatic night mode; | |||
* Alarm in <em>gnome-clocks</em> didn't give me a notification at morning; | |||
* Long start of applications from SD card; | |||
* Spend full battery for only one day; | |||
=== postmarketOS === | |||
Alpine + Phosh / Plasma Mobile / Sxmo (and also Plasma Desktop, Gnome 3, Kodi, XFCE4, … ?). | |||
Logs: <q>By default postmarketOS uses the busybox logging daemon for the syslog and it's configured to log to memory only. The <code>logread</code> command is used to read the in-memory log</q>. | |||
BusyBox as default shell. | |||
After install: | |||
<pre> | |||
sudo apk add zsh vim | |||
chsh -s /bin/zsh | |||
sudo rc-update add sshd default | |||
</pre> | |||
Default <code class="F">/etc/apk/repositories</code>: | |||
<pre> | |||
http://mirror.postmarketos.org/postmarketos/v21.03 | |||
http://dl-2.alpinelinux.org/alpine/v3.13/main | |||
http://dl-2.alpinelinux.org/alpine/v3.13/community | |||
</pre> | |||
==== Plasma mobile ==== | |||
See also: https://wiki.postmarketos.org/wiki/Plasma_Mobile | |||
<code class="P">tinydm-openrc</code>, <code class="P">plasma-phone-components</code>, <code class="P">postmarketos-ui-plasma-mobile</code> (customizations). | |||
<code class="F">/boot</code> = ~250 MB, ext2. <code class="F">/</code> = ~2.1 GB, ext4, auto-resize on first boot. <code class="F">/tmp</code> not in tmpfs! | |||
No swap by default. | |||
Linux kernel: | |||
<pre> | |||
Linux pine64-pinephone 5.11.0 #1-postmarketos-allwinner SMP Sat Mar 27 14:48:00 UTC 2021 aarch64 Linux | |||
</pre> | |||
<code class="F">/proc/cmdline</code>: | |||
<pre> | |||
init=/init.sh rw console=tty0 console=ttyS0,115200 earlycon=uart,mmio32,0x01c28000 panic=10 consoleblank=0 loglevel=1 cma=256M PMOS_NO_OUTPUT_REDIRECT PMOS_FORCE_PARTITION_RESIZE pmos_boot=/dev/mmcblk0p1 pmos_root=/dev/mmcblk0p2 | |||
</pre> | |||
I installed [https://vvave.kde.org/ VVAVE] as audio player. But: <q>VVAVE makes use of multiple web APIs of music knowledge to collect data</q>. | |||
Advantages/pros: | |||
<ol> | |||
<li>Automatic night mode works; | |||
<li>Default virtual keyboard is more comfortable than in Phosh; | |||
<li>Interface logic is similar to Android and even better; | |||
<li>Automatic rotation has small delay, which is good, but anyway too fast; | |||
</ol> | |||
Disadvantages/drawbacks/cons: | |||
<ol> | |||
<li>Graphical interface in common works not so smooth, as Phosh in Mobian; | |||
<li>No automatic connection to Wi-Fi after restart; | |||
<li>Lost Wi-Fi card after night; | |||
<li>Alarm in <em>Clock 0.3.0</em> didn't give me a notification at morning; | |||
<li>Disabling the alarm requires entering PIN; | |||
<li>No possibility to switch off/reboot system from menu, the only way is to hold the power button for about three seconds | |||
<li>Unexpected reboots (crashes?) of graphical interface; | |||
<pre> | |||
$ grep 'KCrash: Application Name' ~/.cache/tinydm.log | |||
KCrash: Application Name = klauncher path = /usr/lib/libexec/kf5 pid = 3090 | |||
KCrash: Application Name = polkit-kde-authentication-agent-1 path = /usr/lib/libexec pid = 3178 | |||
KCrash: Application Name = kded5 path = /usr/bin pid = 3118 | |||
KCrash: Application Name = DiscoverNotifier path = /usr/lib/libexec pid = 3184 | |||
KCrash: Application Name = org_kde_powerdevil path = /usr/lib/libexec pid = 3171 | |||
KCrash: Application Name = plasmashell path = /usr/bin pid = 3176 | |||
</pre> | |||
</ol> | |||
==== Sxmo ==== | |||
<blockquote>Simple X Mobile, is a collection of simple and [https://suckless.org/ suckless] X programs and scripts.</blockquote> | |||
<blockquote>The core of the Sxmo UI is based on the [https://dwm.suckless.org dwm] window manager, the [https://tools.suckless.org/dmenu/ dmenu] menu system, the [https://git.sr.ht/~mil/lisgd lisgd] gesture daemon and the [https://tools.suckless.org/x/svkbd/ svkbd] keyboard.</blockquote> | |||
+ <code>feh</code> (wallpaper), <code>conky</code> (desktop clock), <code>clickclack</code> (audio/vibration feedback on keypress). | |||
See also: https://git.sr.ht/~mil/sxmo-docs/tree/master/USERGUIDE.md | |||
<code class="F">/boot</code> = ~250 MB, ext2. <code class="F">/</code> = ext4, auto-resize on first boot. | |||
After installation, it took about 1 GB space in <code class="F">/</code>. ~120 MB RAM used after boot. | |||
No swap by default. | |||
Linux kernel: | |||
<pre> | |||
Linux pine64-pinephone 5.11.0 #1-postmarketos-allwinner SMP Sat Mar 27 14:48:00 UTC 2021 aarch64 GNU/Linux | |||
</pre> | |||
<code class="F">/proc/cmdline</code>: | |||
<pre> | |||
init=/init.sh rw console=tty0 console=ttyS0,115200 earlycon=uart,mmio32,0x01c28000 panic=10 consoleblank=0 loglevel=1 cma=256M PMOS_NO_OUTPUT_REDIRECT PMOS_FORCE_PARTITION_RESIZE pmos_boot=/dev/mmcblk0p1 pmos_root=/dev/mmcblk0p2 | |||
</pre> | |||
Important settings are in <code class="F">~/.config/sxmo/xinit</code>. | |||
A lot of useful scripts are in <code class="F">/usr/bin/sxmo*</code>. | |||
Apps menu list don't need to restart after package installation. | |||
Applications I tried with Sxmo: | |||
* <code class="P">audacious</code> — no controls in GUI, in WinAmp mode can't work without mouse — controls are too small; | |||
* <code class="P">vlc</code> — has app menu, can't start :( | |||
* <code class="P">thunar</code> — is in apps, but no app menu; | |||
Advantages/pros: | |||
* Wi-Fi works before login/unlock! | |||
* It is possibly to switch off/reboot system from menu; | |||
Disadvantages/drawbacks/cons: | |||
* USB mouse not works by default, | |||
== License == | == License == | ||
It is allowed to share content of this page under [https://creativecommons.org/licenses/by/4.0/ CC-BY international 4.0] or newer (in addition to CC-BY-SA 4.0, which is a little more strict, which is used for whole this wiki). | It is allowed to share content of this page under [https://creativecommons.org/licenses/by/4.0/ CC-BY international 4.0] or newer (in addition to CC-BY-SA 4.0, which is a little more strict, which is used for whole this wiki). |
Revision as of 22:19, 16 May 2021
Hardware
My version: 3 GB RAM, 32 GB eMMC + dock, Mobian edition — hardware revision is probably https://wiki.pine64.org/wiki/PinePhone_v1.2b USB OTG should work.
eMMC state:
# mmc extcsd read /dev/mmcblk2 ============================================= Extended CSD rev 1.8 (MMC 5.1) ============================================= … eMMC Life Time Estimation A [EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_A]: 0x01 eMMC Life Time Estimation B [EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_B]: 0x01
lscpu:
Architecture: aarch64 CPU op-mode(s): 32-bit, 64-bit Byte Order: Little Endian CPU(s): 4 On-line CPU(s) list: 0-3 Thread(s) per core: 1 Core(s) per socket: 4 Socket(s): 1 Vendor ID: ARM Model: 4 Model name: Cortex-A53 Stepping: r0p4 CPU max MHz: 1152,0000 CPU min MHz: 480,0000 BogoMIPS: 48.00 Vulnerability Itlb multihit: Not affected Vulnerability L1tf: Not affected Vulnerability Mds: Not affected Vulnerability Meltdown: Not affected Vulnerability Spec store bypass: Not affected Vulnerability Spectre v1: Mitigation; __user pointer sanitization Vulnerability Spectre v2: Not affected Vulnerability Srbds: Not affected Vulnerability Tsx async abort: Not affected Flags: fp asimd evtstrm aes pmull sha1 sha2 crc32 cpuid
PMIC AXP803
See also: https://github.com/vazhnov/sunxi-axp209
Common for Mobian and postmarketOS (but postmarketOS has no modules, they are probably compiled into the kernel).
$ lsmod| grep axp axp20x_adc 20480 0 axp20x_pek 16384 0 axp20x_battery 16384 0 axp20x_usb_power 16384 0 industrialio 86016 10 stk3310,axp20x_battery,industrialio_triggered_buffer,st_sensors,inv_mpu6050,kfifo_buf,st_magn_i2c,st_magn,axp20x_usb_power,axp20x_adc $ ls -lAF /sys/class/power_supply/axp20x-battery/ total 0 -r--r--r-- 1 root root 4096 May 15 21:47 capacity -rw-r--r-- 1 root root 4096 May 16 01:12 constant_charge_current -rw-r--r-- 1 root root 4096 May 16 01:12 constant_charge_current_max -r--r--r-- 1 root root 4096 May 15 21:47 current_now lrwxrwxrwx 1 root root 0 May 16 01:12 device -> ../../../axp20x-battery-power-supply/ -r--r--r-- 1 root root 4096 May 16 01:12 health drwxr-xr-x 3 root root 0 May 15 21:47 hwmon4/ -r--r--r-- 1 root root 4096 May 16 01:12 online drwxr-xr-x 2 root root 0 May 16 01:11 power/ -r--r--r-- 1 root root 4096 May 15 21:47 present -r--r--r-- 1 root root 4096 May 15 21:47 status lrwxrwxrwx 1 root root 0 May 15 21:47 subsystem -> ../../../../../../../../class/power_supply/ -r--r--r-- 1 root root 4096 May 15 21:47 type -rw-r--r-- 1 root root 4096 May 15 21:47 uevent -rw-r--r-- 1 root root 4096 May 15 21:47 voltage_max_design -rw-r--r-- 1 root root 4096 May 16 01:12 voltage_min_design -r--r--r-- 1 root root 4096 May 15 21:47 voltage_now drwxr-xr-x 2 root root 0 May 15 21:47 wakeup10/ $ cat /sys/class/power_supply/axp20x-battery/status Discharging $ cat /sys/class/power_supply/axp20x-battery/type Battery $ cat /sys/class/power_supply/axp20x-battery/voltage_max_design 4200000 $ cat /sys/class/power_supply/axp20x-battery/voltage_min_design 2900000 $ cat /sys/class/power_supply/axp20x-battery/voltage_now 4161000 $ cat /sys/class/power_supply/axp20x-battery/current_now 117000 $ cat /sys/class/power_supply/axp20x-battery/capacity 98
Software
Mobian
Debian 11 Bullseye + Wayland + Phosh (Gnome).
/boot
= ~500 MB, ext4. /
= f2fs, auto-resize on first boot.
After installation, it took about 3.5 GB space in /. ~480 MB RAM used after boot.
Using zswap(?) by default.
Repositories:
deb http://deb.debian.org/debian bullseye main deb http://repo.mobian-project.org/ bullseye main non-free
Linux kernel:
Linux mobian 5.10-sunxi64 #2 SMP PREEMPT Tue Jan 12 09:55:56 UTC 2021 aarch64 GNU/Linux
/proc/cmdline
: ?
Is using Phosh:
$ ps -eF|grep -i phosh mobian 498 1 0 126594 123580 1 15:35 tty7 00:02:12 /usr/bin/phoc -C /usr/share/phosh/phoc.ini -E bash -lc 'gnome-session --builtin --disable-acceleration-check --session=phosh' mobian 658 498 0 516 496 1 15:35 tty7 00:00:00 /bin/sh -c bash -lc 'gnome-session --builtin --disable-acceleration-check --session=phosh' mobian 659 658 0 110857 15576 2 15:35 tty7 00:00:01 /usr/libexec/gnome-session-binary --systemd --builtin --disable-acceleration-check --session=phosh mobian 705 659 0 220653 114348 1 15:35 tty7 00:01:12 /usr/libexec/phosh
Advantages/pros:
- Hardware works fine: Wi-Fi, loud speaker, charger, …;
- Redshift works;
- Smooth interface in Firefox ESR,
webext-ublock-origin-firefox
, additional settings in packagefirefox-esr-mobile-config
, source https://gitlab.com/postmarketOS/mobile-config-firefox; - It is possibly to switch off/reboot system from menu;
Disadvantages/drawbacks/cons:
- Camera clicks 4 times after login;
- Only one button;
- No button to close applications;
- Scaling is only 100% and 200%;
- Virtual keyboard squeekboard is not comfortable;
- Application Settings can forget about screen size and show only part of self;
- Automatic brightness works too fast;
- Automatic rotation works instantly without a delay — bad when sensor is between of two states + noise, need at least some Schmitt trigger;
- No automatic night mode;
- Alarm in gnome-clocks didn't give me a notification at morning;
- Long start of applications from SD card;
- Spend full battery for only one day;
postmarketOS
Alpine + Phosh / Plasma Mobile / Sxmo (and also Plasma Desktop, Gnome 3, Kodi, XFCE4, … ?).
Logs: By default postmarketOS uses the busybox logging daemon for the syslog and it's configured to log to memory only. The
.
logread
command is used to read the in-memory log
BusyBox as default shell.
After install:
sudo apk add zsh vim chsh -s /bin/zsh sudo rc-update add sshd default
Default /etc/apk/repositories
:
http://mirror.postmarketos.org/postmarketos/v21.03 http://dl-2.alpinelinux.org/alpine/v3.13/main http://dl-2.alpinelinux.org/alpine/v3.13/community
Plasma mobile
See also: https://wiki.postmarketos.org/wiki/Plasma_Mobile
tinydm-openrc
, plasma-phone-components
, postmarketos-ui-plasma-mobile
(customizations).
/boot
= ~250 MB, ext2. /
= ~2.1 GB, ext4, auto-resize on first boot. /tmp
not in tmpfs!
No swap by default.
Linux kernel:
Linux pine64-pinephone 5.11.0 #1-postmarketos-allwinner SMP Sat Mar 27 14:48:00 UTC 2021 aarch64 Linux
/proc/cmdline
:
init=/init.sh rw console=tty0 console=ttyS0,115200 earlycon=uart,mmio32,0x01c28000 panic=10 consoleblank=0 loglevel=1 cma=256M PMOS_NO_OUTPUT_REDIRECT PMOS_FORCE_PARTITION_RESIZE pmos_boot=/dev/mmcblk0p1 pmos_root=/dev/mmcblk0p2
I installed VVAVE as audio player. But: VVAVE makes use of multiple web APIs of music knowledge to collect data
.
Advantages/pros:
- Automatic night mode works;
- Default virtual keyboard is more comfortable than in Phosh;
- Interface logic is similar to Android and even better;
- Automatic rotation has small delay, which is good, but anyway too fast;
Disadvantages/drawbacks/cons:
- Graphical interface in common works not so smooth, as Phosh in Mobian;
- No automatic connection to Wi-Fi after restart;
- Lost Wi-Fi card after night;
- Alarm in Clock 0.3.0 didn't give me a notification at morning;
- Disabling the alarm requires entering PIN;
- No possibility to switch off/reboot system from menu, the only way is to hold the power button for about three seconds
- Unexpected reboots (crashes?) of graphical interface;
$ grep 'KCrash: Application Name' ~/.cache/tinydm.log KCrash: Application Name = klauncher path = /usr/lib/libexec/kf5 pid = 3090 KCrash: Application Name = polkit-kde-authentication-agent-1 path = /usr/lib/libexec pid = 3178 KCrash: Application Name = kded5 path = /usr/bin pid = 3118 KCrash: Application Name = DiscoverNotifier path = /usr/lib/libexec pid = 3184 KCrash: Application Name = org_kde_powerdevil path = /usr/lib/libexec pid = 3171 KCrash: Application Name = plasmashell path = /usr/bin pid = 3176
Sxmo
Simple X Mobile, is a collection of simple and suckless X programs and scripts.
The core of the Sxmo UI is based on the dwm window manager, the dmenu menu system, the lisgd gesture daemon and the svkbd keyboard.
+ feh
(wallpaper), conky
(desktop clock), clickclack
(audio/vibration feedback on keypress).
See also: https://git.sr.ht/~mil/sxmo-docs/tree/master/USERGUIDE.md
/boot
= ~250 MB, ext2. /
= ext4, auto-resize on first boot.
After installation, it took about 1 GB space in /
. ~120 MB RAM used after boot.
No swap by default.
Linux kernel:
Linux pine64-pinephone 5.11.0 #1-postmarketos-allwinner SMP Sat Mar 27 14:48:00 UTC 2021 aarch64 GNU/Linux
/proc/cmdline
:
init=/init.sh rw console=tty0 console=ttyS0,115200 earlycon=uart,mmio32,0x01c28000 panic=10 consoleblank=0 loglevel=1 cma=256M PMOS_NO_OUTPUT_REDIRECT PMOS_FORCE_PARTITION_RESIZE pmos_boot=/dev/mmcblk0p1 pmos_root=/dev/mmcblk0p2
Important settings are in ~/.config/sxmo/xinit
.
A lot of useful scripts are in /usr/bin/sxmo*
.
Apps menu list don't need to restart after package installation.
Applications I tried with Sxmo:
audacious
— no controls in GUI, in WinAmp mode can't work without mouse — controls are too small;vlc
— has app menu, can't start :(thunar
— is in apps, but no app menu;
Advantages/pros:
- Wi-Fi works before login/unlock!
- It is possibly to switch off/reboot system from menu;
Disadvantages/drawbacks/cons:
- USB mouse not works by default,
License
It is allowed to share content of this page under CC-BY international 4.0 or newer (in addition to CC-BY-SA 4.0, which is a little more strict, which is used for whole this wiki).