The phone crashed completely, EDL mode did not work with either physical keys or commands via ADB or fastboot. I restored stock with All In One Tolls + MSM Toll.Really? Can't you just enter EDL mode and use MSM tool to restore oxygen?
The phone crashed completely, EDL mode did not work with either physical keys or commands via ADB or fastboot. I restored stock with All In One Tolls + MSM Toll.Really? Can't you just enter EDL mode and use MSM tool to restore oxygen?
woah, never heard about that, luckily msm tool still worked.The phone crashed completely, EDL mode did not work with either physical keys or commands via ADB or fastboot. I restored stock with All In One Tolls + MSM Toll.
To restore your device using EDL mode then follow these steps it worked for me.The phone crashed completely, EDL mode did not work with either physical keys or commands via ADB or fastboot. I restored stock with All In One Tolls + MSM Toll.
Might be you have the OnePlus settings, touchscreen gestures, single tap set to "wake", make sure this is set to Do nothing.Hi, Double tap to wake isn't working on Oneplus 7 pro-Latest build? I installed it and tested it out it wasn't working for me atleast. What could be the issue?
I don't have this screen issue, perhaps check my post a few replies back and set to "wake device" or enable double tap to wake.DerpFest is not bad but I use Polish language. Unfortunately, 30% of the settings are not translated and it looks bad and is not very comfortable to use. In addition, when the phone is not awake for several minutes, I cannot wake it up by touching the screen and I have to press the power button.
Mobile data working perfectly just add your APN setting from your network operatorHey guys, I've just installed this ROM (coming from Havoc, A11). I find it absolutely wonderful, but I have a huge problem: mobile internet data is not working somehow. I'm using the phone dual-sim, only one SIM has internet (the one selected, slot 1). Taking the other SIM out doesn't change anything.
I do get SMS and calls, but mobile data (even if turned ON) it just doesn't work.
Anyone with this issue, and has been solved?
Go for KOSP my polish mateDerpFest is not bad but I use Polish language. Unfortunately, 30% of the settings are not translated and it looks bad and is not very comfortable to use. In addition, when the phone is not awake for several minutes, I cannot wake it up by touching the screen and I have to press the power button.
Working very well for me.Is the Google Pay not working a known issue already? Can't find it in the first post, nor in the comment in this thread.
Hello where did you get the boot.img i cant find in the derp firmware i want to install Magisk as well ..Plus as some people might have questions:
Hope this will be helpful for future users how will want to experience this wonderful OS
- I have tried to install it on top of OOS 11 (Doesn't work)
- I have installed OOS 10 on top of OOS 11 and then tried to install DF OS (Didn't work either)
- I had to install OOS 10 with the unbrick tool and then after unlocking it and updating it until the right version i managed to install it (probably might have worked with older versions but i tried to make it as accurate as possible)
- I was using only fastboot method no TWRP
- Magisk is installed the usual way by patching the OS's Boot.img and then booting into it and doing (direct install)
- As about the attached Assistant "Fix" Assistant seemed to work fine out of the box but i was wondering is these words "Google Assistant 2.0" were true and oh my happy smile on my face once i've seen pixel 5 Assistant UI and oh that smile fell off after seeing safety net being not passed BUT after unistalling the Magisk module the UI 2.0 Stayed and the SafetyNet is passed ! So it is safe !!! (After that I tried to install it again and SafetyNet still passed so i guess it was something about "First loading or something")
Also gotta point out for developers:
- You might want to insert Qualcomm voice Assist app into the ROM to make google Assistant work while screen is locked and also that might be the cause why Pixel's "Now Playing" feature doesn't work
- Also after installing Google Assistant 2.0 Now Playing seems got grayed out and i can't disable it nor do anything to it.
Hello , after entering adb sideload what to do ? i already have installed succesfully the rom but magisk is still misterious for me i dowloaded the magisk zip and ill wait for a reply if you can for full instructions , thank you pretty much hope youll replyGo here and download the latest recovery.img.
Reboot to booloader.
Enter fasbtoot flash recovery <recovery.img> (I assume you know how to use adb and fastboot commands)
Reboot to recovery.
Click apply update>apply using adb
Enter adb sideload <magisk.zip> (Download from here and rename file to magisk.zip from magisk.apk)
After enabling adb sideload, you need to connect your phone to your pc, open a command prompt in the platform tools directory and enter adb sideload <path to magisk.zip (rename .apk to .zip)>.Hello , after entering adb sideload what to do ? i already have installed succesfully the rom but magisk is still misterious for me i dowloaded the magisk zip and ill wait for a reply if you can for full instructions , thank you pretty much hope youll reply
Yes please add oos camera like before, please please.Feature Request Please @NurKeinNeid
1: Camera - Please add OnePlus or GCAM by default
2: App Lock Please
3: Bootloader lock key (if possible)
@echo off
echo "Script powered by MesS_U"
echo "FastbootD - DerpFest Slot installer"
fastboot devices
pause
:choice
set /P c="Do you want to wipe Data partition? [W]ipe | [S]kip >"
if /I "%c%" EQU "W" goto :Wipe
if /I "%c%" EQU "S" goto :Skip
:Wipe
fastboot -w
:Skip
:choice
set /P c="Which Slot do you want to Flash/Update? Slot[A] | Slot[B] | Both[X]? >"
if /I "%c%" EQU "A" goto :SlotA
if /I "%c%" EQU "B" goto :SlotB
if /I "%c%" EQU "X" goto :Both
:SlotA
echo "Processing Flash/Update Slot A"
fastboot flash system_a system.img
fastboot flash system_ext_a system_ext.img
fastboot flash boot_a boot.img
fastboot flash odm_a odm.img
fastboot flash product_a product.img
fastboot flash vbmeta_a vbmeta.img
fastboot flash vbmeta_system_a vbmeta_system.img
fastboot flash vendor_a vendor.img
fastboot flash dtbo_a dtbo.img
echo "Flash Slot A Completed"
:choice
set /P c="Reboot device [Y]es | [N]o | [R]ecovery ? >"
if /I "%c%" EQU "Y" goto :AYes
if /I "%c%" EQU "N" goto :ANo
if /I "%c%" EQU "R" goto :ARecovery
:AYes
fastboot reboot
pause
exit
:ANo
echo "Reboot aborted"
echo "Done! Please Exit"
pause
exit
:ARecovery
fastboot reboot recovery
pause
exit
:SlotB
echo "Processing Flash/Update Slot B"
fastboot flash system_b system.img
fastboot flash system_ext_b system_ext.img
fastboot flash boot_b boot.img
fastboot flash odm_b odm.img
fastboot flash product_b product.img
fastboot flash vbmeta_b vbmeta.img
fastboot flash vbmeta_system_b vbmeta_system.img
fastboot flash vendor_b vendor.img
fastboot flash dtbo_b dtbo.img
echo "Flash/Update Slot B completed"
:choice
set /P c="Reboot device [Y]es | [N]o | [R]ecovery ? >"
if /I "%c%" EQU "Y" goto :BYes
if /I "%c%" EQU "N" goto :BNo
if /I "%c%" EQU "R" goto :BRecovery
:BYes
fastboot reboot
pause
exit
:BNo
echo "Reboot aborted"
echo "Done! Please Exit"
pause
exit
:BRecovery
fastboot reboot recovery
pause
exit
:Both
echo "Processing Flash/Update 1/2 - Slot A"
fastboot flash system_a system.img
fastboot flash system_ext_a system_ext.img
fastboot flash boot_a boot.img
fastboot flash odm_a odm.img
fastboot flash product_a product.img
fastboot flash vbmeta_a vbmeta.img
fastboot flash vbmeta_system_a vbmeta_system.img
fastboot flash vendor_a vendor.img
fastboot flash dtbo_a dtbo.img
echo "Flash/Update 1/2 successful"
echo "Processing Flash/Update 2/2 - Slot B"
fastboot flash system_b system.img
fastboot flash system_ext_b system_ext.img
fastboot flash boot_b boot.img
fastboot flash odm_b odm.img
fastboot flash product_b product.img
fastboot flash vbmeta_b vbmeta.img
fastboot flash vbmeta_system_b vbmeta_system.img
fastboot flash vendor_b vendor.img
fastboot flash dtbo_b dtbo.img
echo "Flash/Update 2/2 successful"
echo "Flash Slots A|B completed"
:choice
set /P c="Reboot device [Y]es | [N]o | [R]ecovery ? >"
if /I "%c%" EQU "Y" goto :XYes
if /I "%c%" EQU "N" goto :XNo
if /I "%c%" EQU "R" goto :XRecovery
:XYes
fastboot reboot
pause
exit
:XNo
echo "Reboot aborted"
echo "Done! Please Exit"
pause
exit
:XRecovery
fastboot reboot recovery
pause
exit
I'm using KOSP currently and they just addressed this issue in their latest update, and since I'm sure these ROMs share codebases in some way, I think it would need to be fixed in the next ROM update as well.Yes . I use Nova Launcher. But this isn't the reason even if i don't use it, the application crashes. Otherwise it worked before in all previous Derp Versions with it.
/* Your warranty is now void.
*
* I am not responsible for bricked devices, dead SD cards,
* thermonuclear war, or you getting fired because the alarm app failed. Please
* do some research if you have any concerns about features included in this ROM
* before flashing it! YOU are choosing to make these modifications, and if
* you point the finger at me for messing up your device, I will laugh at you.
*/