Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
dotmaniac
Old
#1  
Member - OP
Thanks Meter 20
Posts: 64
Join Date: Nov 2010
Default Trying to make a edify_defs file for Android Kitchen

Here is what I have:

Code:
Google Nexus 7 by ASUS (Wi-Fi Only)

change_mnt=yes

sys_mnt=\/dev\/block\/mmcblk0p3
cache_mnt=\/dev\/block\/mmcblk0p4
boot_mnt=\/dev\/block\/mmcblk0p2
data_mnt=\/dev\/block\/mmcblk0p9
sdcard_mnt=\/dev\/block\/mmcblk0p9

param1=ext4
param2=EMMC

param1_sdcard=vfat
param2_sdcard=
Problem is... It only works under MultiROM.
When installing normally it gives a Status 7 error which from what I understand is because of bad mount points in the edify_defs file?

I have tried the mount points those mount points in the file above and also these:
Code:
/sdcard vfat /dev/block/sda1
 /system ext4 /dev/block/platform/sdhci-tegra.3/by-name/APP
 /cache ext4 /dev/block/platform/sdhci-tegra.3/by-name/CAC
 /data ext4 /dev/block/platform/sdhci-tegra.3/by-name/UDA length=-32768
 /misc emmc /dev/block/platform/sdhci-tegra.3/by-name/MSC
 /boot emmc /dev/block/platform/sdhci-tegra.3/by-name/LNX
 /recovery emmc /dev/block/platform/sdhci-tegra.3/by-name/SOS
 /staging emmc /dev/block/platform/sdhci-tegra.3/by-name/USP
I can't figure out what I am missing... Can somebody please help?
 
r00t4rd3d
Old
#2  
Senior Member
Thanks Meter 88
Posts: 222
Join Date: Nov 2012
Location: Toilet
First check that your mount points are correct:

Code:
heimdall print-pit
 
dotmaniac
Old
#3  
Member - OP
Thanks Meter 20
Posts: 64
Join Date: Nov 2010
Default Re: Trying to make a edify_defs file for Android Kitchen

Sorry for replying late... but you do know that is only for Samsung devices?

I am trying to get it working on a Nexus 7 which is made by ASUS!

Sent from my Nexus 7 using XDA Premium HD app
 
FBis251
Old
(Last edited by FBis251; 10th April 2013 at 04:50 PM.)
#4  
FBis251's Avatar
Recognized Contributor
Thanks Meter 3055
Posts: 2,993
Join Date: Mar 2011

 
DONATE TO ME
Code:
 sys_mnt=\/dev\/block\/mmcblk0p3
You're escaping the forward slashes. You don't need to do that. This should work fine:
Code:
 sys_mnt=/dev/block/mmcblk0p3
EDIT
Just remember that you can only set variables like that in a .prop file.
 
kibmcz
Old
#5  
kibmcz's Avatar
Senior Member
Thanks Meter 394
Posts: 651
Join Date: Jun 2010

 
DONATE TO ME
I found this thread in the process of working on parallel project it seems lol. Anyway I have found that i directly out of android kitchen it always gives error status 0 but i sorta found a fix that allowed it to boot on mine.

i used this in the edify_defs file

Code:
# Google Nexus 7 by ASUS (Wi-Fi Only)

change_mnt=yes

param1=ext4
param2=EMMC

param1_sdcard=vfat
param2_sdcard=

sys_mnt=\/dev\/block\/platform\/sdhci-tegra.3\/by-name\/APP
cache_mnt=\/dev\/block\/platform\/sdhci-tegra.3\/by-name\/CAC
boot_mnt=\/dev\/block\/platform\/sdhci-tegra.3\/by-name\/LNX
data_mnt=\/dev\/block\/platform\/sdhci-tegra.3\/by-name\/UDA
sdcard_mnt=\/dev\/block\/sda1
The key thing that made mine boot was changing the following items manually:

1. Change the boot line to the following (taken from cm 10.1 nightly)
Code:
package_extract_file("boot.img", "/dev/block/platform/sdhci-tegra.3/by-name/LNX");
2. use the update-binary from a recent cm nightly.

If you do that it SHOULD work.
Google Galaxy Nexus ~ I90250: TWRP 2.4.1.0, PrimeLC03 Bootloader, i90250XXLH1 Radio
Google Nexus 7 ~ ME370T: TWRP 2.4.4.0, Grouper-4.18 Bootloader
Google Nexus S ~ I9020A: TWRP 2.4.1.0, I9020XXLC2 Bootloader, I9020XXKB3 Radio

My Roms/Mods: http://kcomputerzone.ca/pages/downloads/android.php
 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...