Search results

  1. L

    Thread [Q] appropriate roomservice.xml for cm12 and hlte?

    Hi, I tried building cm12 for my note 3, but the resulting rom won't boot. I figured it might have been some modifications I made, so I tried with just the sources from git. Didn't work either. I looked at temaseks unofficial build and it boots without any problems - they seem to use a...
  2. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    Question - in this build, does the following happen - If some sound is playing, for example music in Apollo and another sound is player, i.e touch sound - this results in strange "metallic"/garbled noises? If you look in logcat, there is only an info message when that happens about what is being...
  3. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    I have no audio on calls in my build with http://review.cyanogenmod.org/#/c/56728/ and http://review.cyanogenmod.org/#/c/56730/ . Audio is distorted with http://review.cyanogenmod.org/#/c/56727/ I think those fixes need some time still.
  4. L

    Post [RESEARCH] Samsung Knox: Warranty Void Behavior

    what's that in aboot.mbn at offset 0x59565: androidboot.warranty_bit=%d. This looks like a parameter passed to the kernel. If overriden with a hard 0 might cause some software to think the bit isn't set. Isn't helping with resetting the bit of course, but could make the container work with 0x1...
  5. L

    Post [Bounty] [05/20/2014]Reset KNOX counter to 0x0 (UPDATE: 3k +)

    skimmed a bit through the aboot.mbn file in a hex editor. Found a string "SMC call to set the warranty violation fuse failed" SMC call is probably a Secure Monitor Call. I found some info here and here Maybe it'd be possible to take a look at local arm disassembly in the aboot.mbn, find where...
  6. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    I added some stuff for me (mtune for the kernel (no idea if that had any effect), f2fs support for external sd card, plus OpenCL from before). What are good sd card benchmarks? want to test if f2fs is any good.
  7. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    dammit - can't get wifi to work in my build... Did I miss some simple wifi fix? I'm going to bed now. too tired.
  8. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    Hm, no, that does sound like a bit too long. Did you build with the same repos as in the OP? all switched to cm-11.0 branch where applicable?
  9. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    # OpenCL vendor/lib/libllvm-a3xx.so vendor/lib/libllvm-a3xx.so:lib/libllvm-a3xx.so vendor/lib/libOpenCL.so vendor/lib/libOpenCL.so:lib/libOpenCL.so added to device/samsung/hlte-common/common-proprietary-files.txt I put it below the GPU stuff... cause it's GPU stuff :) there are OpenCL libs in...
  10. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    Hm, is it really necessary to add TheMuppets repository? I see no difference between my generated *.mk files and the ones in the repository... Or are any of the blobs in the repo different from what I can pull from my phone? Built cm myself. Basically the same as from the repos, except I added...
  11. L

    Post [N9005][Beta][Unofficial] - CyanogenMod 11 - Test Build 2014-01-13

    Works well enough for me to not go back to TW. if you copy libOpenCL.so and libllvm-a3xx.so from /vendor/lib from a stock system image to /system/lib and chmod 644 them, the pone gains OpenCL support... 1 platform, 2 devices, GPU and CPU. What should I do if I want to contribute? I know how to...
  12. L

    Thread [Q] How to increase frequency of input events?

    Hello! I've started toying around with android app development and decided to code a drawing app that can use a stylus (I have a galaxy note 3). First thing I did was to implement a naive drawing machanism. What I do is I create lines from the motion events that I get, including the event...
  13. L

    Thread [Q] How does mounting work on android?

    Seeing how I'm not getting any response to my question about f2fs, I thought I should educate myself on the general topic of storage on android. From what I understood the external SD card is mounted by vold automatically when it's detected, based on the entries in /etc/vold.fstab. I skimmed...
  14. L

    Post SELinux, automounting f2fs card

    bumping for visibility and adding a more general question: How can I make a directory visible to file managers? I have my card mounted from the terminal on /mnt/real_sdcard. If I navigate there with a file manager, even with root permissions, I can't see the contents. I can see what's on the...
  15. L

    Thread SELinux, automounting f2fs card

    Hi. I have successfully modified my kernel to have f2fs support. I now can mount an f2fs formatted sd card as root in terminal, if the SELinux policy is set to permissive. I want to be able to do this in the enforcing mode, too and I want android to be able to automatically mount the card. I...
  16. L

    Thread Problems Unpacking/Packing kernel

    Hi! I am trying to create a custom kernel for my Galaxy Note 3. I have successfully modified and built the kernel. Now I want to actually test it. I've searched for possible methods to create a boot.img file from my zImage. I've tried mkbootimg and unmkbootimg kernel kitchen I was able to...