Search results

  1. Linux-SWAT

    Slackware inside Pyra

    ^^ I would let the screen vertical to play it. The screen has a default smartphone-like orientation. That's why it must be rotated for the Pyra.
  2. Linux-SWAT

    Slackware inside Pyra

    Well I use the hard work of other people ;^) I'll let you know when things will fit together. For now it's still ugly, e.g. starting X gives a black screen half of the time. I guess I should rotate with xorg, not with the user config.
  3. Linux-SWAT

    Slackware inside Pyra

    As a workaround, I was able to use a X rotation using etnaviv: /etc/X11/xorg.conf.d/10-video-etnaviv.conf Section "Device" Identifier "etnaviv" Driver "modesetting" Option "kmsdev" "/dev/dri/card1" Option "AccelMethod" "glamor" EndSection Section "ServerFlags" Option...
  4. Linux-SWAT

    Slackware inside Pyra

    I was trying colors on leds, then I had this message on the terminal: The system is going down to maintenance mode NOW! Then I was kicked out by the system and it looks like it changed its runlevel... I had to telinit 3. Strange, I've never encountered that on any Linux... --EDIT: a few moment...
  5. Linux-SWAT

    Slackware inside Pyra

    Sound: # cat /lib/modprobe.d/pyra-alsa.conf options snd_soc_omap_abe_twl6040 index=0 options snd_soc_omap_hdmi_audio index=-2 Note: there's no snd_soc_omap_hdmi_audio in Letux. According to @hns, I removed the AESS firmware (as AESS isn't working yet) in order to get only one sound card: # mv...
  6. Linux-SWAT

    Slackware inside Pyra

    This script is quite useful, it lists modules + parameters: #!/bin/sh cat /proc/modules | cut -f 1 -d " " | while read module; do echo "Module: $module"; if [ -d "/sys/module/$module/parameters" ]; then ls /sys/module/$module/parameters/ | while read parameter; do echo -n...
  7. Linux-SWAT

    Slackware inside Pyra

    X rotation: Appended to the big line in uEnv.txt: drm_kms_helper.fbdev_rotation=8 But dmesg shows: drm_kms_helper: unknown parameter 'fbdev_rotation' ignored Module parameters: Module: drm_kms_helper Parameter: drm_fbdev_overalloc --> 100 Parameter: edid_firmware --> Parameter: fbdev_emulation...
  8. Linux-SWAT

    Slackware inside Pyra

    Audio: # /usr/share/pyra/scripts/pyra-init-alsa.sh alsa-lib main.c:1405:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -2 No state is present for card H58040000encode alsa-lib main.c:1405:(snd_use_case_mgr_open) error: failed to import hw:0 use case configuration -2...
  9. Linux-SWAT

    Slackware inside Pyra

    3D: I use this /etc/powervr.ini : [default] #WindowSystem=libpvrws_WAYLAND.so WindowSystem=libpvrDRMWSEGL.so DefaultPixelFormat=RGB888 Doing "strace /usr/bin/pvrsrvctl --start --no-module" shows no access to /etc/powervr.ini . --EDIT: Looks like I miss something... # find / -name...
  10. Linux-SWAT

    Finally, a bit more news!

    @EvilDragon @hns About the battery, how is "made" the idle test ? I mean is the screen on at minimum brightness ? With or without keyboard backlight ? Wi-Fi and BT off ?
  11. Linux-SWAT

    Handheld 386 on Ali express

    Next one: the clay tablet.
  12. Linux-SWAT

    Slackware inside Pandora.

    New image here, I see no led activity: http://slackware.openpandora.org/pandora/sl4p/sl4p-testing/sl4p.img.xz $ sha1sum sl4p.img.xz e377fbd87c6651f68e66ebfdbbbb66c779f6307f
  13. Linux-SWAT

    Slackware inside Pyra

    3D: Now struggling with: https://dev.pyra-handheld.com/packages/omap5-sgx-ddk-um-linux Letux has the pvrsrvkm_omap5_sgx544_116 module so I edited the rc.pvr file: sed -i -e "s/pvrsrvkm/pvrsrvkm_omap5_sgx544_116/g" rc.pvr Short version, launching "rc.pvr start" complained about missing...
  14. Linux-SWAT

    Slackware inside Pandora.

    I fixed an dumb error in my build scripts, so don't try this rootfs as it's clearly broken. I'll regenerate a new one.
  15. Linux-SWAT

    Error when compiling omapconf from the git

    Hi, got omapconf from: https://dev.pyra-handheld.com/packages/omapconf Here's the error: /usr/bin/ld: arch/arm/mach-omap/dra7/dpll/dpll_dra7xx-data.o:(.rodata+0x1a0): multiple definition of `dpll_dra7xx_sources'; arch/arm/mach-omap/dra7/dpll/dpll_dra7xx.o:(.rodata+0x1b4): first defined here...
  16. Linux-SWAT

    Right CFLAGS/CXXFLAGS for Pyra ?

    Hi, I'm using those parameters natively on the Pyra: export CFLAGS=" -DCORTEX-A15 -O2 -pipe -march=armv7-a -mcpu=cortex-a15 -mfloat-abi=hard -mfpu=neon-vfpv4 -fPIC " export CXXFLAGS=" -DCORTEX-A15 -O2 -pipe -march=armv7-a -mcpu=cortex-a15 -mfloat-abi=hard -mfpu=neon-vfpv4 -fPIC " But I got...
  17. Linux-SWAT

    Slackware inside Pyra

    Xrandr rotation doesn't work :^(
  18. Linux-SWAT

    Slackware inside Pyra

    I was able to boot in ro with this line: args_mmc=run finduuid;setenv bootargs console=${console} ${optargs} root=/dev/mmcblk0p2 ro rootfstype=${mmcrootfstype}
  19. Linux-SWAT

    Slackware inside Pyra

    Thanks. HDMI works with the console, but screen is rotated 90° ! HDMI works with X, and screen is ok.
  20. Linux-SWAT

    Slackware inside Pyra

    I compiled the xorg driver from: https://dev.pyra-handheld.com/packages/xserver-xorg-video-armsoc-omap5 I use this /etc/X11/xorg.conf.d/10-pyra-driver.conf file: Section "Device" Identifier "Pyra FBDEV" Driver "omap5" Option "DRICard" "2" # must...
Back
Top