mercury0x000d
The ultra-modern operator
So once again, I'm trying to make a ROM in the good ol' Android Kitchen. I find that to use some of the more powerful features, it makes me convert my ROM's updater-script into the older style update-script, as this is the only kind it understands. Upon building the ROM, it converts this back into the new style update-script, however not fully. I get these two errors:
So I look inside my update-script, and find the two lines it's complaining about as follows:
From reading through the system, I find that mmcblk0p17 corresponds to the cache partition and mmcblk0p18 corresponds to the data partition. I triedreplacing the pair of ???'s with cache and data, respectively, and this caused a status 7 error. I tried replacing the updater-binary as it states in the FAQ to no avail.
And so, my question to all those who use the Kitchen regularly, is how do I get around this??
Any input would be appreciated. Thanks in advance
Code:
NOTE: Ensure you fix the unknown reference(s) at the line number(s) below.
Compare with the original version of the updater-script, if you have
one.
5:mount("ext4", "EMMC", "/dev/block/mmcblk0p17", "???");
7:mount("ext4", "EMMC", "/dev/block/mmcblk0p18", "???");
So I look inside my update-script, and find the two lines it's complaining about as follows:
Code:
mount("ext4", "EMMC", "/dev/block/mmcblk0p17", "???");
mount("ext4", "EMMC", "/dev/block/mmcblk0p18", "???");
From reading through the system, I find that mmcblk0p17 corresponds to the cache partition and mmcblk0p18 corresponds to the data partition. I triedreplacing the pair of ???'s with cache and data, respectively, and this caused a status 7 error. I tried replacing the updater-binary as it states in the FAQ to no avail.
And so, my question to all those who use the Kitchen regularly, is how do I get around this??
Any input would be appreciated. Thanks in advance
