GithubHelp home page GithubHelp logo

motorolamobilityllc / kernel-msm Goto Github PK

View Code? Open in Web Editor NEW
607.0 98.0 433.0 5.58 GB

Linux Kernel for Motorola devices using MSM-based chipset

License: Other

Assembly 1.04% C 98.10% Shell 0.27% Awk 0.01% Perl 0.13% Python 0.13% C++ 0.03% UnrealScript 0.01% Makefile 0.24% Roff 0.02% sed 0.01% Parrot 0.01% Yacc 0.01% Lex 0.01% SmPL 0.02% Gherkin 0.01% XS 0.01% Raku 0.01% Clojure 0.01% M4 0.01%

kernel-msm's Introduction

How do I submit patches to Android Common Kernels

  1. BEST: Make all of your changes to upstream Linux. If appropriate, backport to the stable releases. These patches will be merged automatically in the corresponding common kernels. If the patch is already in upstream Linux, post a backport of the patch that conforms to the patch requirements below.

    • Do not send patches upstream that contain only symbol exports. To be considered for upstream Linux, additions of EXPORT_SYMBOL_GPL() require an in-tree modular driver that uses the symbol -- so include the new driver or changes to an existing driver in the same patchset as the export.
    • When sending patches upstream, the commit message must contain a clear case for why the patch is needed and beneficial to the community. Enabling out-of-tree drivers or functionality is not not a persuasive case.
  2. LESS GOOD: Develop your patches out-of-tree (from an upstream Linux point-of-view). Unless these are fixing an Android-specific bug, these are very unlikely to be accepted unless they have been coordinated with [email protected]. If you want to proceed, post a patch that conforms to the patch requirements below.

Common Kernel patch requirements

  • All patches must conform to the Linux kernel coding standards and pass script/checkpatch.pl
  • Patches shall not break gki_defconfig or allmodconfig builds for arm, arm64, x86, x86_64 architectures (see https://source.android.com/setup/build/building-kernels)
  • If the patch is not merged from an upstream branch, the subject must be tagged with the type of patch: UPSTREAM:, BACKPORT:, FROMGIT:, FROMLIST:, or ANDROID:.
  • All patches must have a Change-Id: tag (see https://gerrit-review.googlesource.com/Documentation/user-changeid.html)
  • If an Android bug has been assigned, there must be a Bug: tag.
  • All patches must have a Signed-off-by: tag by the author and the submitter

Additional requirements are listed below based on patch type

Requirements for backports from mainline Linux: UPSTREAM:, BACKPORT:

  • If the patch is a cherry-pick from Linux mainline with no changes at all
    • tag the patch subject with UPSTREAM:.
    • add upstream commit information with a (cherry picked from commit ...) line
    • Example:
      • if the upstream commit message is
        important patch from upstream

        This is the detailed description of the important patch

        Signed-off-by: Fred Jones <[email protected]>
  • then Joe Smith would upload the patch for the common kernel as
        UPSTREAM: important patch from upstream

        This is the detailed description of the important patch

        Signed-off-by: Fred Jones <[email protected]>

        Bug: 135791357
        Change-Id: I4caaaa566ea080fa148c5e768bb1a0b6f7201c01
        (cherry picked from commit c31e73121f4c1ec41143423ac6ce3ce6dafdcec1)
        Signed-off-by: Joe Smith <[email protected]>
  • If the patch requires any changes from the upstream version, tag the patch with BACKPORT: instead of UPSTREAM:.
    • use the same tags as UPSTREAM:
    • add comments about the changes under the (cherry picked from commit ...) line
    • Example:
        BACKPORT: important patch from upstream

        This is the detailed description of the important patch

        Signed-off-by: Fred Jones <[email protected]>

        Bug: 135791357
        Change-Id: I4caaaa566ea080fa148c5e768bb1a0b6f7201c01
        (cherry picked from commit c31e73121f4c1ec41143423ac6ce3ce6dafdcec1)
        [joe: Resolved minor conflict in drivers/foo/bar.c ]
        Signed-off-by: Joe Smith <[email protected]>

Requirements for other backports: FROMGIT:, FROMLIST:,

  • If the patch has been merged into an upstream maintainer tree, but has not yet been merged into Linux mainline
    • tag the patch subject with FROMGIT:
    • add info on where the patch came from as (cherry picked from commit <sha1> <repo> <branch>). This must be a stable maintainer branch (not rebased, so don't use linux-next for example).
    • if changes were required, use BACKPORT: FROMGIT:
    • Example:
      • if the commit message in the maintainer tree is
        important patch from upstream

        This is the detailed description of the important patch

        Signed-off-by: Fred Jones <[email protected]>
  • then Joe Smith would upload the patch for the common kernel as
        FROMGIT: important patch from upstream

        This is the detailed description of the important patch

        Signed-off-by: Fred Jones <[email protected]>

        Bug: 135791357
        (cherry picked from commit 878a2fd9de10b03d11d2f622250285c7e63deace
         https://git.kernel.org/pub/scm/linux/kernel/git/foo/bar.git test-branch)
        Change-Id: I4caaaa566ea080fa148c5e768bb1a0b6f7201c01
        Signed-off-by: Joe Smith <[email protected]>
  • If the patch has been submitted to LKML, but not accepted into any maintainer tree
    • tag the patch subject with FROMLIST:
    • add a Link: tag with a link to the submittal on lore.kernel.org
    • add a Bug: tag with the Android bug (required for patches not accepted into a maintainer tree)
    • if changes were required, use BACKPORT: FROMLIST:
    • Example:
        FROMLIST: important patch from upstream

        This is the detailed description of the important patch

        Signed-off-by: Fred Jones <[email protected]>

        Bug: 135791357
        Link: https://lore.kernel.org/lkml/[email protected]/
        Change-Id: I4caaaa566ea080fa148c5e768bb1a0b6f7201c01
        Signed-off-by: Joe Smith <[email protected]>

Requirements for Android-specific patches: ANDROID:

  • If the patch is fixing a bug to Android-specific code
    • tag the patch subject with ANDROID:
    • add a Fixes: tag that cites the patch with the bug
    • Example:
        ANDROID: fix android-specific bug in foobar.c

        This is the detailed description of the important fix

        Fixes: 1234abcd2468 ("foobar: add cool feature")
        Change-Id: I4caaaa566ea080fa148c5e768bb1a0b6f7201c01
        Signed-off-by: Joe Smith <[email protected]>
  • If the patch is a new feature
    • tag the patch subject with ANDROID:
    • add a Bug: tag with the Android bug (required for android-specific features)

kernel-msm's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

kernel-msm's Issues

titan/thea LXB22.99-16/LXB22.99-24

Please update titan/thea kernel tree :

TITAN:
System Version : 22.41.16.titan_retaildsds.retaildsdsall.en.03
Build Number : LXB22.99-16
Kernel version: Linux localhost 3.4.42-ge35b7bb-00001-gf6a3942 #1 SMP PREEMPT Wed Feb 25 01:09:46 CST 2015 armv7l GNU/Linux

THEA:
Build Number : LXB22.99-24

quark 5.1 release

@tags07 Can you make the 5.1 source release for Motorola Droid Turbo XT1254 (quark), that was pushed to phones two month ago? Thanks

Moto E conor is not booting with condor 4.4.2 mr2

Hi,

I am trying to build condor kernel 4.4.2 mr2 release
after that i am getting error ERROR: modpost: Found 2 section mismatch(es). To see full details build your kernel with: 'make CONFIG_DEBUG_SECTION_MISMATCH=y'

and when i am building with below options
make -C kernel_mr2/kernel-msm ARCH=arm CROSS_COMPILE=$cross O=$kernel_out_dir defoldconfig
make -C kernel_mr2/kernel-msm ARCH=arm CROSS_COMPILE=$cross O=$kernel_out_dir headers_install
make -C kernel_mr2/kernel-msm ARCH=arm CROSS_COMPILE=$cross O=$kernel_out_dir CONFIG_NO_ERROR_ON_MISMATCH=y
make -C kernel_mr2/kernel-msm ARCH=arm CROSS_COMPILE=$cross O=$kernel_out_dir dtbs
make -C kernel_mr2/kernel-msm ARCH=arm CROSS_COMPILE=$cross O=$kernel_out_dir modules
make -C kernel_mr2/kernel-msm ARCH=arm CROSS_COMPILE=$cross O=$kernel_out_dir INSTALL_MOD_PATH=$PWD/out/target/product/generic modules_install

After that when i am flashing the kernel its not booting .

But when i trying same for kitkat-4.4.4-release-condor-repw its booting but wifi not working.

Please let me know what is wrong in mr2 or am i doing anything wrong.
Let me know for any more information.

Thanks & Regards,
Amit Garg

unknown baseband issues with Victara LXE22.46-11

Hi,

I've downloaded the latest kernel source code and have rebuild the kernel using moto's kernel sources and I'm having issues with unknown baseband? Any tip on resolving this issue? Thanks.

Missing F2FS source

The "fs/f2fs" folder is linked to "../../motorola/kernel/fs/f2fs" which isn't pushed to git, can someone from Moto push it?

Motorola razr I, XT890, SMI

Hey there,

Is there any chance the kernel source of the Intel device comes available? We got them all till JB, but are missing the Android 4.4.2 one. And there are to many changes to adapt the JB one to work on the 4.4.2.

Hazou

Moto G non-GPE (Falcon) 5.1 kernel sources request

Hi,

Can you please release the sources for the kernel used on this build here?
Build: Stock 5.1 for xt1032 (Brazilian Retail)
Build ID: LPB23.13-56
Build description: falcon_retbr-user 5.1 LPB23.13-56 57 release-keys

victara 6.0 source missing

Here's the ROM build: MPE24.49-18
Here's the kernel string: Linux localhost 3.4.42-ga9982b3-00002-g389e46b #1 SMP PREEMPT Tue Nov 3 16:12:18 CST 2015 armv7l

When will you release lollipop kernel source?

When will you release lollipop kernel source for moto g?

kernel version 3.4.42-gfdc8055
hudsoncm@ilclbld27

system version
22.11.6.titan_retuaws.retuaws.en.US.retin

build number
LXB22.39-6

Modification of stock boot image fails

Hello,

I'm trying to do the following on a Moto G (2014 / 2nd gen), which should be 'titan'. I want to modify the content of the initrd.

I've proceeded by extracting the content of the boot partition and have isolated the initrd portion from it. Unpacked it, did my modification (small change to the fstab.qcom), and repacked the whole thing. I padded the initrd such that the size exactly matches the current one and then I integrated the whole thing into the boot image again.

I flashed the image to boot via fastboot, but fastboot console just tells me 'hab check failed for boot'. I've analyzed the structure of the boot image and AFAIK there is not checksumming / signature stuff going on there, so this should work. My guess is that the bootloader still does some checksum validation (the 'hab check'). Sadly I haven't found any concrete information about what this 'hab check' constitutes.

Since Motorola folks are frequenting here, I thought I could pose this question here. So anything I'm missing in terms of boot image modification?

With best wishes,
Tobias

PS: Bootloader is unlocked.

Moto G GPE (Falcon) 4.4.4 Kernel Sources release request

Hi, i tried to search this tag/release but i couldn't find it, it's the latest 4.4.4 GPE available.

So, can you please release the sources for the kernel used on this build?
Build: GPE 4.4.4 for XT1032 (falcon)
Build ID: KTU84P.M003
Build description: falcon_gpe-user 4.4.4 KTU84P.M003 18 release-keys

Thank you.

Moto G (1st gen.) GPE 5.1 latest kernel source

Hi, can you update the falcon gpe branch/release to the latest one? Thanks

LMY47M.M004
falcon_gpe-user 5.1 LMY47M.M004 9 release-keys
motorola/falcon_gpe/falcon_umts:5.1/LMY47M.M004/9:user/release-keys

Moto G LTE (Peregrine) latest sources

Hi, can you release latest sources for this?

ro.build.id=LPB23.13-61
ro.build.description=peregrine_retus-user 5.1 LPB23.13-61 62 release-keys
ro.build.fingerprint=motorola/peregrine_retus/peregrine:5.1/LPB23.13-61/62:user/release-keys

the "WCNSS_qcom_wlan_nv.bin" firmware differs from 23-13.58, so i would like to know if there are changes to "vendor-qcom-opensource-wlan-prima" too, thank you.

GDB support?

I saw that in readme:

gdb'ing a non-running kernel currently fails because gdb (wrongly)
disregards the starting offset for which the kernel is compiled.

Have you any idea what need to be fixed or "workarounded"?

Best regards.

Booting Moto X pure with modified stock kernel reboots at unlocked bootloader screen

Due to the lack of any build instructions, I have approached the build in the general sense. Compiling the kernel and packing it with the stock untouched RAMDisk and a generated DT image causes instant reboot at the unlocked bootloader warning screen. I'm not sure what needs to be done here since this method worked fine on other phones I have compiled kernels for stock.

CIFS.ko module for XT907

Hey guys, I got the msm kernel source and want to build it so i can get this module. When I try to make it says:

make[1]: Nothing to be done for `all'.
make[1]: Nothing to be done for `relocs'.
  CHK     include/linux/version.h
  CHK     include/generated/utsrelease.h
  CALL    scripts/checksyscalls.sh
  CHK     include/generated/compile.h
  SKIPPED include/generated/compile.h
  CC      arch/x86/kernel/apic/io_apic.o
arch/x86/kernel/apic/io_apic.c:382:13: warning: ‘io_apic_level_ack_pending’ defined but not used     [-Wunused-function]
error, forbidden warning: io_apic.c:382

I just want cifs on my phone. Can someone help me? I'm VMware if that matters. Thanks!

XT925 KDA20.127 source release

Please release the source for Razr HD:

System version: 180.46.127.XT925.CEE-Retail.en.EU
Build number: KDA20.127
Kernel version: 3.4.42-ga566aff hudsoncm@ilclbld29 #1 Wed Oct 15 05.30:34 CDT 2014

Thanks.

I'm having problems with wifi driver lollipop-5.1.1-release-ghost

D/WifiService( 946): setWifiEnabled: true pid=4178, uid=1000
E/WifiService( 946): Invoking mWifiStateMachine.setWifiEnabled
E/WifiStateMachine( 946): setting operational mode to 1
E/WifiHW ( 946): User build,dont Start logging service.
E/WifiStateMachine( 946): Failed to load driver
E/WifiStateMachine( 946): setWifiState: unknown state
I/MotoNetwCtrlr( 1631): onReceive: Completed intent=Intent { act=android.net.wifi.WIFI_STATE_CHANGED flg=0x4000010 (has extras) } Action=android.net.wifi.WIFI_STATE_CHANGED
E/WifiStateMachine( 946): setSuspendOptimizations: 2 true
E/WifiStateMachine( 946): mSuspendOptNeedsDisabled 0

I forked from https://github.com/MotorolaMobilityLLC/vendor-qcom-opensource-wlan-prima
Any help will be appreciated :)

My tag is
XT1058-
LPA23.12-21.7

Firmware and kernel source for my moto g (2014)

Can anyone please suggest me kernel source link with relative firmware link and def config file to compile that kernel? I have tried various combinations but get mismatched partition size error while flashing kernel. However kernel works fine if i load it in the memory and boot from there using -
fastboot boot myboot.img

Missing kernel patch to address sound distortions during deep-buffer playback

Present since lollipop on all the msm8226. Cyanogenmod spotted the missing patch from CAF here:
CyanogenMod/android_kernel_motorola_msm8226@f67ddf1

It may be worthwhile to check if this also addresses the issue on the stock Motorola kernel for the Moto G msm8226 lineup. The the problem was caused by changes in 'platform.h' within the audio HAL.

platform.h

@@ -157,7 +157,7 @@ enum {
  * the buffer size of an input/output stream
  */
 #define DEEP_BUFFER_OUTPUT_PERIOD_SIZE 960
-#define DEEP_BUFFER_OUTPUT_PERIOD_COUNT 4
+#define DEEP_BUFFER_OUTPUT_PERIOD_COUNT 5
 #define LOW_LATENCY_OUTPUT_PERIOD_SIZE 240
 #define LOW_LATENCY_OUTPUT_PERIOD_COUNT 2

Kernel source for falcon?

When will you release the kernel source for the Moto G 2013 (falcon) running Android Lollipop?

Firmware build versions are LXB22.46-xx

Kernel Source Request - XT1053 LPA23.12-15.5 (Moto X 2013)

Hey guys, I'm just gonna basically copy paste the same format as another previous request for another device, thanks again for your support :)

Please release the LP source for Moto X 2013 Developer Edition:

Baseband version: MSM8960PRO_BP_23255.138.89.00R
Kernel version: 3.4.42-gb476356 hudsoncm @ ilclbld99 # 1 Tue Aug 25 07:43:11 CDT 2015
System version: 222.27.5.ghost_row.Retail.en.US
Build number: LPA23.12-15.5

Thanks :)

Missing kernel source for Condor Lollipop 5.1.1

As the title suggests, there is no branch for kernel source for Moto E (1st Gen) Condor for the Lollipop 5.1.1 ROM. All there is for Condor is the Kitkat source which I highly doubt will boot considering the changes between the ROMs

MMI-KXC20.82-13

better get someone who can maintain , 5.0.2 for condor now? really go home

thea: LXB22.99-24.12 11

System Version : 22.46.12.thea_retgb.retgball.en.GB
Build Number : LXB22.99-24.12
Kernel version: Linux version 3.4.42-gf18cb80 (hudsoncm@ilclbld73) (gcc version 4.8 (GCC) ) #1 SMP PREEMPT Tue Aug 18 18:36:04 CDT 2015

Missing fs/f2fs directory in lollipop-5.1.1-release-ghost (and others)

The file fs/Kconfig in the source code for lollipop-5.1.1-release-ghost refers to a directory fs/f2fs, but that directory is not present in the .zip or .tar.gz files, nor browsing git repository.

Please upload the missing files to github, as I believe that the f2fs filesystem is indeed used for the /data filesystem on first generation Moto X devices (such as 1053).

Requesting HID driver for RZ100 for upstream inclusion

Hi,

the RZ100 Smart Controller is a bluetooth accessory sold by Motorola. It combines a headset and a multitouch trackpad.

It works out of the box on Motorola Android phones, but not on other manufacturers' Android devices. It also does not work on Linux desktops.

Obviously, the HID driver needed to use the RZ100 comes pre-installed with Motorola products and nowhere else.

Can the Motorola Mobility team please provide this driver so that it can be included upstream with Linux desktops and stock Android?

Thank you.

Release XT925 KDA20.127 source Please.

Here we go again...

Please release the source for Razr HD:

System version: 180.46.127.XT925.CEE-Retail.en.EU
Build number: KDA20.127
Kernel version: 3.4.42-ga566aff hudsoncm@ilclbld29 #1 Wed Oct 15 05.30:34 CDT 2014

Thanks.

defconfig for Moto x style

My kernel:3.10.84-gf6a6187
System version:24.11.18
Build number:MPH24.49-18
Android 6.0
I want to know my kernel deconfig, please, thanks!

Modem crashes

Hi.

I was wondering if you could perhaps help with modem crashes (watchdog bites or smsm resets) on 3.4 kernel. Device in question is Photon Q 4G LTE/XT897/Asanti, unfortunately no longer officially supported but still the best slider qwerty out there.

We are using device tree appended to zImage from 3.4 kernel based on razrm/vanquish source.
Excluding modem, device and all components seem to be fully operational on the 3.4 kernel version.

The issue (issues?) are constant watchog bites from modem software or modem going into SMSM_RESET state where reset is first detected by SMD driver.
There are times when modem can work normally even for hours but those times appear to be related to suspend/idle. E.g., preventing the screen to turn off makes crashes much more rare and the only consistency I have been able to notice is that the crash primarily occurs when screen turns off. Also, toggling the screen on/off will certainly cause modem to crash. This behaviour can be observed in vast majority of cases. Unfortunately, modem will eventually crash even with the screen on, especially if the device was being used so I am not sure how much the above mentioned "consistency" is relevant. There is a lot more going on than just screen state change but perhaps there is some dependency or link between panel and modem, seeing that modem is notified of those state transitions...
SMSM state for modem so far has always been to "08108043", i.e.

<6>[ 7341.981320,0] atmxt_set_ic_state: IC state ACTIVE -> SLEEP
<6>[ 7342.313565,1] CPU1 is up
<6>[ 7342.404729,0] SMSM Int Modem->Apps
<6>[ 7342.404760,0] smsm_irq_handler: irq=70
<7>[ 7342.404760,0] <SM 00001929 08108043>
<3>[ 7342.404760,0] 
<3>[ 7342.404760,0] SMSM: Modem SMSM state changed to SMSM_RESET.

while the Apps state can vary.
When the modem crashes by watchdog bite, ramdumps (ramdump_smem.bin, ramdump_modem_fw.bin, ramdump_modem_sw.bin, /data/misc/ril/bp-dumps/modem.log) are a bunch of 0x0's while on smsm reset the only one containing non-null data is ramdump_smem.bin
For reference, crashing modem on 3.0 kernel (by an smsm reset) yields null data only for ramdump_modem_fw.bin, smem ramdump is filled with 2mb of data and modem sw ramdump with 65mb of data.

As you can see, I have no idea what is going on and any help would be greatly appreciated.

Here are some longer kernel log snippets:
smsm reset: http://pastebin.com/TKt8HhQ1
wdog bite: http://pastebin.com/jmwYkBZf ,
strings from smem ramdump: http://pastebin.com/wrPfrd50
It might be worth noting that modem.log, content of which is also included in smem dump, contains "SFR Init: wdog or kernel error suspected.", while under default circumstances log_modem_sfr() from modem-8960.c records "modem subsystem failure reason: (unknown, smem_get_entry failed).
The "modem subsystem failure reason: (unknown, init string found)." that can be seen in the above logs is an attempt of mine to allocate SMEM_SSR_REASON_MSS0 smem item.

  • modem crash log almost always points to wl1m.c, line 6266, task IST418
    • rarely task times out (always rxtx, but it has the shortest timespan)

All of firmware (TZ, SBLs, Modem...) and proprietary blobs are from official JB released version.
machine = 'msm8960dt'
extended baseband = 'msm8960-svlte-B1.B2D.B5.C0.C1D.C10D.L25D'
baseband version: ASANTI_C_BP_1139.000.18.12P
HW_REV : 0x82b0
MBM_VERSION : 0x0000109b

I honestly don't know how to shorten this, not knowing makes it hard to filter out irrelevant data.
Basically, I would like to know if

  • Have you encountered such an issue when migrating to 3.4 kernel?
  • Do you have some idea what might have changed in kernel that could be causing such behavior?

Thank you in advance for an eventual reply.

Build moto G 2014 kernel with usb serial and audio driver support

Even I have downloaded kernel-msm-MMI-KXB21.85-24.tar.gz for moto G 2014. Then I have build that kernel after adding usb serial driver. But size is coming lesser than required. Anyhow I managed to run the newly created boot.img. But now my sound is not working. No sound at all from the device. It is showing following error when I check with dmesg.

" failed to instantiate card msm8226-tapan9302-snd-card : -22 " and " failed to init SLIMBUS_0_RX : -22 "

Could you please help me with this?

Thanks
pirpi

Latest source for Peregrine

What is the release tag for this Peregrine build? does it even up yet?

3.4.42-gb4744cf
hudsoncm@ilclbld53 # 1
Tue Sep 15 12:06:04 CDT 2015

23.26.3.peregrine_retgb.retgball.en.GB retgb
LPB23.13-17.3

Thanks

Screen flickering with kitkat kernel and lollipop bootloader (41.19) on falcon

Hi, i own a gpe falcon and i recently switched to an older kitkat GPE (latest 4.4.4) build and i am also trying to fix the screen flickering at startup (easily fixable by locking and unlocking the screen), i believe there is a commit on lollipop kernel branch that fixes this behavior, because compiling lollipop kernel and using it on kitkat GPE fixes the screen flickering. Because i want to use kitkat kernel i would like to know the single commit that adresses the issue.

Thanks in advance for your help.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.