Announcement

Collapse
No announcement yet.

Announcement

Collapse
No announcement yet.

Linuxium's Bootloader software to dualboot Android and Linux

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    #76
    Originally posted by no_spam_for_me View Post
    If you want to use the picuntu-rfs (system.img at SD/USB) with linuxium kernel, you have to label the rfs 'linuxroot' instead of 'picuntu', because the init look for this label
    Code:
    sudo tune2fs -L linuxroot /dev/[I]{device(-partition-number)}[/I]

    Thanks for your info brother but I asked that I want to use linuxium rfs at nand instead of picuntu rfs(all files from picuntu and replace system.img with linuxium ubuntu.img). I doubt that may be some difference in parameter file(sizes are defferent of both rfs) which may cause non booting.

    Comment


      #77
      Originally posted by ani1nonly View Post
      I doubt that may be some difference in parameter file(sizes are defferent of both rfs) which may cause non booting.
      Generally no boot, or only till initramfs?

      You only replace the system.img?

      I don't think (but ofcause not shure) there is a problem with the paramter, because the kernel 'mounts' the MTD partitions depending on the parameter(file), so if you flash the original parameter, boot.img (initramfs) and the kernel.img and only replace the system.img, norrmally it must minimum boot to "character-mode-screen" (initramfs)...
      There you can dmesg and mount for a > to file (don't forget to umount) and analyse it at pc...
      You also can do e.g. 'ls -al /dev/disk/by-name' or 'ls -al /dev/block' or 'cat /proc/mtd' or 'cat /proc/partitions' etc...
      RK3288 Devices
      - Overview BOX (LINK !)
      - Overview STICK (Dongle) (LINK !)

      MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
      UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
      Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
      Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

      RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
      Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

      Comment


        #78
        I don't think that the picuntu boot.img will work with something other then picuntu, because it seams so, it checks if there is a picuntu (but I'm not shure):
        init
        Code:
        mount -t ext4 /dev/mtdblock2 /mnt
        touch /mnt/picuntu_is_on
        if [ -f /mnt/resize_nand ] ; then
                    umount /mnt
                    grep -q '\<quiet\>' /proc/cmdline || echo "PicUntu is checking root file system ..."
                    e2fsck -y /dev/mtdblock2
                    grep -q '\<quiet\>' /proc/cmdline || echo "Now resizing root file system ..."
                    resize2fs -f -p /dev/mtdblock2
                    mount -t ext4 /dev/mtdblock2 /mnt 
                    rm /mnt/resize_nand
        fi
         
        # G8 - Check for first boot
        if [ -f /mnt/first_boot ] ; then
                    grep -q '\<quiet\>' /proc/cmdline || echo "Congratulations, this is the first boot."
                    touch /mnt/etc/picuntu_1stboot.sh
                    chmod 777 /mnt/etc/picuntu_1stboot.sh
                    /mnt/etc/picuntu_1stboot.sh
                    rm /mnt/first_boot
        fi
        umount /mnt
        but at parameter the 'root=/dev/mtdblock2' is ok, so it dos not depends on the label of the rfs (but must only at 3. partition and that is normal for 'at nand')
        RK3288 Devices
        - Overview BOX (LINK !)
        - Overview STICK (Dongle) (LINK !)

        MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
        UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
        Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
        Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

        RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
        Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

        Comment


          #79
          Defconfig?

          I want to rebuild the kernel to add gasp module, anyone know the defconfig which is used by linuxium (according next info)?

          Target : rk3188 (Rikomagic MK802IV equivalent)
          Git used (I think?) : https://github.com/linuxium/3188-SRC-AP6210

          thk

          Comment


            #80
            Originally posted by GoblE View Post
            I want to rebuild the kernel to add gasp module, anyone know the defconfig which is used by linuxium (according next info)?

            Target : rk3188 (Rikomagic MK802IV equivalent)
            Git used (I think?) : https://github.com/linuxium/3188-SRC-AP6210

            thk
            config available here: https://drive.google.com/file/d/0B99...nB0QTRoVXp0RUE

            Comment


              #81
              Originally posted by linuxium View Post
              Aie
              I can't get the file ("access denied"), I think it havn't public access :/

              Comment


                #82
                Originally posted by GoblE View Post
                Aie
                I can't get the file ("access denied"), I think it havn't public access :/
                It does now! Sorry about that.

                Comment


                  #83
                  Originally posted by linuxium View Post
                  It does now! Sorry about that.
                  Perfect, thanks a lot!

                  And, great job for your work, it works fine

                  Comment


                    #84
                    Originally posted by ani1nonly View Post
                    Thanks for your info brother but I asked that I want to use linuxium rfs at nand instead of picuntu rfs(all files from picuntu and replace system.img with linuxium ubuntu.img). I doubt that may be some difference in parameter file(sizes are defferent of both rfs) which may cause non booting.
                    That's what I'm running on a T-r42 and best to scrap Picuntu entirely and flash (use the same flash tool if you wish) with Linuixum's files here.

                    You will need Loader, Parameter, Boot, Kernel & RFS (which you already have). Linuxium has developed kernels for particular devices (MK802IV & T428) however if you have a Linux (rockchip 3188) kernel that works for your device you can substitute it in. Either of Linuxium's kernels will boot but may or may not support your network interfaces (Lan/Wi-fi). There are a multitude of Linux kernels scattered around the boards and if you know the network chips of your device it will greatly help you find the right one or compile your own.
                    Also don't forget to "Erase IDB" before flashing.
                    REMINDER - THIS PROCESS ERASES EVERYTHING ON YOUR DEVICE!

                    Comment


                      #85
                      Originally posted by enrique66_35 View Post
                      That's what I'm running on a T-r42 and best to scrap Picuntu entirely and flash (use the same flash tool if you wish) with Linuixum's files here.

                      You will need Loader, Parameter, Boot, Kernel & RFS (which you already have). Linuxium has developed kernels for particular devices (MK802IV & T428) however if you have a Linux (rockchip 3188) kernel that works for your device you can substitute it in. Either of Linuxium's kernels will boot but may or may not support your network interfaces (Lan/Wi-fi). There are a multitude of Linux kernels scattered around the boards and if you know the network chips of your device it will greatly help you find the right one or compile your own.
                      Also don't forget to "Erase IDB" before flashing.
                      REMINDER - THIS PROCESS ERASES EVERYTHING ON YOUR DEVICE!

                      Thanks brother
                      I will try all available combinations(I will change all kernels Working for my device one by one while unchanging the other files by linuxium(ubuntu on nand post I.e. loader, parameter, boot, and rfs)). I will tell you the results as soon as possible.
                      Btw my device is netxeon mk809iii_v1.0_20130606 - cpu rk3188t wifi-ap6210 and i think that it is equivalant to mk802 iv.
                      Ani1nonly

                      Comment


                        #86
                        CX 919 - AP6210 - Boot Menu problem

                        Hello,

                        can someone give an 'semi-linux-noob' a hint what i'm doing wrong.

                        I tried this: (From first Post)

                        1. Flashed this:

                        Rikomagic MK802IV (latest model) - https://drive.google.com/file/d/0B99...jVLSHlhQXVnX0k

                        2. Then i copied this Linux Image with Win32 Disk Imager Tool on SD Card:

                        Ubuntu (https://docs.google.com/file/d/0B99O...TFZbHg3ZWE3LXc)

                        Now, i don't have Ubuntu in Boot Menu.
                        The only System available in Boot Menu is Android, which boots and works just fine.

                        What am i doing wrong?
                        Is the 'misc' part of Rikomagic MK802IV not necessary, because there is no such file in the firmware packet.

                        Would be really nice if someone could give me a step by step guide for my CX-919 Stick.
                        Or is this not possible with CX919?

                        And what can i do exactly with this modules:

                        To add the Linux modules to the Linux RFS simply:

                        1. Download the relevant modules and unzip the file:
                        Rikomagic MK802IV (latest model) - https://drive.google.com/file/d/0B99...jFXMmJId2l5TkE
                        2. As root enter 'cd /lib/modules' and then 'cpio -ivdum < <unzipped_modules_file>'
                        3. Reboot

                        Sorry, but i'm really a new linux user.....

                        Comment


                          #87
                          Originally posted by Stuckmojo667 View Post
                          And what can i do exactly with this modules
                          The modules are the "drivers" (KernelObject *.ko).
                          E.g. for the AP6210 of your CX-919 (or other filesystems like ntfs).
                          The kernel loads them automatically if need (but if I understand it correctly normally you have to do 'sudo depmod -a' at terminal after you have copied them).
                          Manually load: 'sudo insmod {path-kernelobject.ko}'
                          With 'lsmod' you can check witch ko's are actually running.
                          RK3288 Devices
                          - Overview BOX (LINK !)
                          - Overview STICK (Dongle) (LINK !)

                          MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
                          UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
                          Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
                          Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

                          RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
                          Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

                          Comment


                            #88
                            Thanks linuxium.Will this work on Ugoos UT1?(rk3188),which img should I use?

                            Comment


                              #89
                              Language support?

                              Hi,

                              what do I have to do to change the language?
                              At 'System Settings' -> 'Language Support' the [Install / Remove Languages...] isn't available.
                              Because of that, I do:
                              Code:
                              sudo apt-get install language-pack-de 
                              sudo apt-get install language-pack-gnome-de
                              so I get at 'Language for menus and windows' "Deutsch (Deutschland)" instead of "English (US)" but it doesn't have any effect and [Apply System Wide] isn't available.
                              I can't change 'Keyboard Layout' too.

                              PS:
                              Ok, don't ask me why and how, but after second or third 'relogin' it is in German and know I understand the + at Keyboard-Windows to add German Keyboard-Layout...
                              (perhaps because of a parallel active VNC session??? I don't know)
                              RK3288 Devices
                              - Overview BOX (LINK !)
                              - Overview STICK (Dongle) (LINK !)

                              MINIX NEO: Z64 W/A - (Intel Z3735F); X8-H Plus - (Amlogic S812H); A2 Lite (sponsored by minix.com.hk)
                              UGOOS UT3S (4/32GB with fan) - FW 2.0.6 - (RK3288) (sponsored by GearBest.com)
                              Tronsmart Draco AW80 Meta (2/16GB) - FW v2.0rc3 - (Allwinner A80) (sponsored by GeekBuying.com)
                              Beelink / UBOX R89 - FW 111k4110_1219 - (RK3288) (sponsored by Netxeon (Beelink))

                              RK3188: pcb => "CH001 1332 TN-BX09_V2.1" (K-R42 / CS918...) => wasser KK 1.0.3 (old rev)
                              Fly Mouse Mini Wireless Keyboard with 2 mode learning IR remote 'iPazzPort KP-810-16'

                              Comment


                                #90
                                UVC

                                There are some problems with UVC module.
                                When I connect my camera (Logitech C270 which works fine with an other board [IGEP with a yocto distribution & kernel 2.6.37] ), my dmesg :

                                Code:
                                [COLOR=#29F914][FONT=Andale Mono][  265.007268] usb 2-1.2: new full speed USB device number 6 using usb20_host[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  265.115954] usb 2-1.2: not running at top speed; connect to a high speed hub[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  265.222686] usb 2-1.2: New USB device found, idVendor=046d, idProduct=0825[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  265.222705] usb 2-1.2: New USB device strings: Mfr=0, Product=0, SerialNumber=2[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  265.222722] usb 2-1.2: SerialNumber: 31D6E0B0[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  265.224268] uvcvideo: Found UVC 1.00 device <unnamed> (046d:0825)[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  265.324808] input: UVC Camera (046d:0825) as /devices/platform/usb20_host/usb2/2-1/2-1.2/2-1.2:1.0/input/input3[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.326090] 6:3:1: cannot set freq 16000 to ep 0x86[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.382855] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f2a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.382884] uvcvideo: Failed to query (GET_DEF) UVC control 2 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.382941] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f2a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.382977] uvcvideo: Failed to query (GET_DEF) UVC control 2 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383027] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f2a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383054] uvcvideo: Failed to query (GET_DEF) UVC control 2 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383096] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f2a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383119] uvcvideo: Failed to query (GET_DEF) UVC control 2 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383162] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb79ca[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383186] uvcvideo: Failed to query (GET_DEF) UVC control 3 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383226] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb79ca[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383250] uvcvideo: Failed to query (GET_DEF) UVC control 3 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383292] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb79ca[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383316] uvcvideo: Failed to query (GET_DEF) UVC control 3 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383356] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7b6a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383380] uvcvideo: Failed to query (GET_DEF) UVC control 7 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383423] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7b6a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383446] uvcvideo: Failed to query (GET_DEF) UVC control 7 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383486] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7b6a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383511] uvcvideo: Failed to query (GET_DEF) UVC control 7 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383564] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xeb835305[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383588] uvcvideo: Failed to query (GET_DEF) UVC control 11 on unit 2: -1 (exp. 1).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383629] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xeb835305[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383655] uvcvideo: Failed to query (GET_DEF) UVC control 11 on unit 2: -1 (exp. 1).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383695] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xeb835305[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383719] uvcvideo: Failed to query (GET_DEF) UVC control 11 on unit 2: -1 (exp. 1).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383767] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xec19104a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383793] uvcvideo: Failed to query (GET_DEF) UVC control 4 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383833] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xec19104a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383857] uvcvideo: Failed to query (GET_DEF) UVC control 4 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383898] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xec19104a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383924] uvcvideo: Failed to query (GET_DEF) UVC control 4 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383968] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xeb835785[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.383992] uvcvideo: Failed to query (GET_DEF) UVC control 5 on unit 2: -1 (exp. 1).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384034] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xeb835785[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384060] uvcvideo: Failed to query (GET_DEF) UVC control 5 on unit 2: -1 (exp. 1).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384100] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xeb835785[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384123] uvcvideo: Failed to query (GET_DEF) UVC control 5 on unit 2: -1 (exp. 1).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384166] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f8a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384191] uvcvideo: Failed to query (GET_DEF) UVC control 10 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384231] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f8a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384255] uvcvideo: Failed to query (GET_DEF) UVC control 10 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384297] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7f8a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384321] uvcvideo: Failed to query (GET_DEF) UVC control 10 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384361] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7aea[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384385] uvcvideo: Failed to query (GET_DEF) UVC control 8 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384426] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7aea[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384450] uvcvideo: Failed to query (GET_DEF) UVC control 8 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384491] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xebeb7aea[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384515] uvcvideo: Failed to query (GET_DEF) UVC control 8 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384557] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xec16980a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384580] uvcvideo: Failed to query (GET_DEF) UVC control 1 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384620] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xec16980a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384644] uvcvideo: Failed to query (GET_DEF) UVC control 1 on unit 2: -1 (exp. 2).[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384686] DWC_OTG: dwc_otg_hcd_urb_enqueue urb->transfer_buffer address not align to 4-byte 0xec16980a[/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono][  266.384710] uvcvideo: Failed to query (GET_DEF) UVC control 1 on unit 2: -1 (exp. 2).
                                [/FONT][/COLOR]
                                When I launch uvccapture :
                                Code:
                                [COLOR=#29F914][FONT=Andale Mono]ioctl querycontrol error 5 [/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono]ioctl querycontrol error 5 [/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono]ioctl querycontrol error 5 [/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono]ioctl querycontrol error 5 [/FONT][/COLOR]
                                [COLOR=#29F914][FONT=Andale Mono]Unable to dequeue buffer (22).
                                [/FONT][/COLOR]
                                I'll study this issue, but if anyone have an existing solution, I'm listening

                                Comment

                                Working...
                                X