Firefly Open Source Community

Title: How to write recovery command to misc.img at Android? [Print This Page]

Author: cgsong    Time: 12/22/2014 14:35
Title: How to write recovery command to misc.img at Android?
I upload custom RK3288 Android image and linux image to the Firefly for dual OS. But, there is some problem "switch system" in custom Android firmware. The custom Android image is not Firefly official image. When I connect to PC with "adb shell", "reboot recovery" command works well for switching Android to Linux. So I'd like to know how to write "recovery command" to misc.img that is /dev/block/mtd/by-name/misc at Android without PC.
Author: busybee    Time: 12/23/2014 09:32
Do  a hexdump of misc.img, and you'll find the magic word:
  1. $ hexdump -C rkst/Image/misc.img
  2. 00000000  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
  3. *
  4. 00004000  62 6f 6f 74 2d 72 65 63  6f 76 65 72 79 00 00 00  |boot-recovery...|
  5. 00004010  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
  6. *
  7. 00004040  72 65 63 6f 76 65 72 79  0a 2d 2d 77 69 70 65 5f  |recovery.--wipe_|
  8. 00004050  61 6c 6c 00 00 00 00 00  00 00 00 00 00 00 00 00  |all.............|
  9. 00004060  00 00 00 00 00 00 00 00  00 00 00 00 00 00 00 00  |................|
  10. *
  11. 0000c000
Copy the code

Please refer to https://bitbucket.org/T-Firefly/firefly ... 0462265ae6

There's a command to write misc partition:

  1. (echo -n boot-recovery | busybox dd bs=16k seek=1 conv=sync; busybox dd if=/dev/zero bs=16k count=1) > /dev/block/mtd/by-name/misc
Copy the code




Author: cgsong    Time: 12/23/2014 12:13

In addition, I'd like to know how to setup "switch system" at Android power menu with "(echo -n boot-recovery | busybox dd bs=16k seek=1 conv=sync; busybox dd if=/dev/zero bs=16k count=1)??> /dev/block/mtd/by-name/misc". I don't know how to put script at Android's switch system menu. Please let let me know how to put recovery command script that you told me. I'm using custom Android. So, where can I modify system file to switching system?










Author: busybee    Time: 12/23/2014 17:54

Check the commit already mensioned above.

https://bitbucket.org/T-Firefly/firefly ... 0462265ae6



This commit a based on the fact that misc partition is writable by all users:

diff --git a/system/core/init/devices.c b/system/core/init/devices.c
index 537627e..88287ef 100644
--- a/system/core/init/devices.c
+++ b/system/core/init/devices.c
@@ -188,7 +188,7 @@ static mode_t get_device_perm(const char *path, unsigned *uid, unsigned *gid)
     /* Default if nothing found. */
     *uid = 0;
     *gid = 0;
-    return 0600;
+    return 0666;
}

static void make_device(const char *path,


It's somewhat ugly. Please follow the factory reset code in Setting.
Author: shopecs    Time: 11/13/2024 17:42
Check out the latest design of women's Sandals online at ECS. Explore the best quality sandals for women online at ECS. Get your favorite sandals online across Pakistan at the best prices.
Author: adoroshoes    Time: 11/13/2024 17:43
Discover the newest styles of shoes for women! Browse a wide variety of fashionable and affordable shoes that are ideal for any occasion, ranging from beautiful heels to comfy flats. Get the top women's shoes online right now to upgrade your wardrobe.
Author: Gulaal    Time: 11/13/2024 19:00
Gulaal stands out as one of the women clothing brands in pakistan. Experience the perfect blend of tradition and contemporary style with our latest collections.
Author: ammarakhan    Time: 11/13/2024 19:20
Ammara Khan - Discover luxury dresses and formal wear from Pakistan. Explore a wide range of Pakistani luxury formals and indulge in luxury clothing options.
Author: cloudnexuslab    Time: 11/13/2024 20:06
Cloud Nexus Lab provides specialized NetSuite solutions for UK businesses, helping to streamline operations with cloud-based ERP systems. Our team offers customized NetSuite implementation, support, and optimization services to enhance business performance and ensure smooth scalability.
Author: Mushq    Time: 7 day before
Find the perfect bridal dresses for your special day in Pakistan at Mushq Pk. Discover a stunning collection of Pakistani bridal dresses, including options for barat. Shop online and make your dream wedding a reality.
Author: qamaash    Time: 7 day before
Shop the latest trends in women clothing at Qammash UK. Find a wide selection of stylish and affordable women's clothing to enhance your wardrobe.
Author: afrozeh    Time: 7 day before
Shop the latest collection of Pakistani designer brands at Afrozeh. Discover the perfect outfits for any occasion.




Welcome Firefly Open Source Community (https://bbs.t-firefly.com/) Powered by Discuz! X3.1