How to Modify Android Boot Sequence in Order to Boot From an SD Card

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP











up vote
2
down vote

favorite












I've been looking into how to boot Android form an SD card, and I came across this thread on XDA, but I am too much of a noob to understand it, and user has stated that she doesn't have the time to make a more detailed guide. This is the post with the instructions:




Victory!



I took sdbags's stock zip (4.3) and extracted it on my computer. I used unmkbootimg to extract the initramfs.gz and kernel.gz from the boot.img in the ROM. I unzipped the initramfs and un-cpio'd it, then modified macallan.fstab to refer to /dev/block/mmcblk1p1 for /data, p2 for /system, and p3 for /cache. I also modified init.macallan.rc to avoid having it try to make filesystems on the EMMC -- I want it not to try touching the EMMC at all.



Next I rebuilt the initramfs.gz. I bought a good quality class 10 microsd and partitioned it on my computer with 3 primary partitions, one for /data, one for /system, and one for /cache (about 2GB and 1GB for /system and /cache). I made ext4 filesystems on all 3 partitions, mounted p2, and copied the rom over and installed it by hand using the updater-script as a guide. Then I unmounted and popped the SD card into my TF701t.



To boot it, I put my tablet into fastboot mode. I booted the kernel and ramdisk using 'fastboot boot' -- no need for kexec from recovery. I can do this without any reliance whatsoever on the internal EMMC. It took awhile to boot up, but it booted first try. The app drawer was a bit slow to come up, but I'm pretty happy I get to use my tablet at all! This whole process turned out to be MUCH easier than I expected it would be, and I'm quite confident I could do this to boot any ROM I wanted. I only use stock because of driver issues with my bluetooth keyboard.



Still willing to try my hand at maintaining cromi's ROM2SD branch though



Thanks everyone for all of your help!




Then there was more elaboration here:




To answer your question, I don't know. My method works for booting because I changed the ROM's idea of what device/partition /system and /data live on. I don't know where your device holds its idea of which partition holds the radio firmware. If it's somewhere in the initramfs, then you can modify it in the same way I modified mine and tell it to load the radio off of the external SD. If the ROM is hardcoded to look for the radio on the internal SD, then you may be screwed.



A quick note on the initramfs for those curious: the initramfs (initrd, initramdisk, etc) is a compressed miniature linux filesystem holding the bare essentials necessary to get a linux system running. The initrd's job is to figure out where the filesystem(s) are that hold the actual linux installation, mount them, and hand over control to that linux system.



It's not absolutely necessary to use an initrd to boot a linux system, but it makes it a lot easier because you can load drivers, prepare the filesystem, etc. The stock ROM for the TF701t (and I'm assuming most, if not all ROMs for all android devices) use an initrd to mount /system, /data, and any other necessary partitions. I'm just telling it to mount those from my external SD instead of internal.



I don't know how radio partitions work. Is it just a raw firmware image on the partition, or is it an ext4 (or other) filesystem with a firmware binary file on it? The latter case might mean the initrd mounts the radio firmware along with everything else it does before handing over control to android, so it might mean you can change it to a partition on the external card.




I have basic knowledge of what this mean (after some googling). However, I still don't quite understand, and I was hoping for some elaboration here (as this seems to deal with similar things to the Linux OS (inramfs.gz, kernel.gz, and the bootup process in general). Thanks!










share|improve this question



























    up vote
    2
    down vote

    favorite












    I've been looking into how to boot Android form an SD card, and I came across this thread on XDA, but I am too much of a noob to understand it, and user has stated that she doesn't have the time to make a more detailed guide. This is the post with the instructions:




    Victory!



    I took sdbags's stock zip (4.3) and extracted it on my computer. I used unmkbootimg to extract the initramfs.gz and kernel.gz from the boot.img in the ROM. I unzipped the initramfs and un-cpio'd it, then modified macallan.fstab to refer to /dev/block/mmcblk1p1 for /data, p2 for /system, and p3 for /cache. I also modified init.macallan.rc to avoid having it try to make filesystems on the EMMC -- I want it not to try touching the EMMC at all.



    Next I rebuilt the initramfs.gz. I bought a good quality class 10 microsd and partitioned it on my computer with 3 primary partitions, one for /data, one for /system, and one for /cache (about 2GB and 1GB for /system and /cache). I made ext4 filesystems on all 3 partitions, mounted p2, and copied the rom over and installed it by hand using the updater-script as a guide. Then I unmounted and popped the SD card into my TF701t.



    To boot it, I put my tablet into fastboot mode. I booted the kernel and ramdisk using 'fastboot boot' -- no need for kexec from recovery. I can do this without any reliance whatsoever on the internal EMMC. It took awhile to boot up, but it booted first try. The app drawer was a bit slow to come up, but I'm pretty happy I get to use my tablet at all! This whole process turned out to be MUCH easier than I expected it would be, and I'm quite confident I could do this to boot any ROM I wanted. I only use stock because of driver issues with my bluetooth keyboard.



    Still willing to try my hand at maintaining cromi's ROM2SD branch though



    Thanks everyone for all of your help!




    Then there was more elaboration here:




    To answer your question, I don't know. My method works for booting because I changed the ROM's idea of what device/partition /system and /data live on. I don't know where your device holds its idea of which partition holds the radio firmware. If it's somewhere in the initramfs, then you can modify it in the same way I modified mine and tell it to load the radio off of the external SD. If the ROM is hardcoded to look for the radio on the internal SD, then you may be screwed.



    A quick note on the initramfs for those curious: the initramfs (initrd, initramdisk, etc) is a compressed miniature linux filesystem holding the bare essentials necessary to get a linux system running. The initrd's job is to figure out where the filesystem(s) are that hold the actual linux installation, mount them, and hand over control to that linux system.



    It's not absolutely necessary to use an initrd to boot a linux system, but it makes it a lot easier because you can load drivers, prepare the filesystem, etc. The stock ROM for the TF701t (and I'm assuming most, if not all ROMs for all android devices) use an initrd to mount /system, /data, and any other necessary partitions. I'm just telling it to mount those from my external SD instead of internal.



    I don't know how radio partitions work. Is it just a raw firmware image on the partition, or is it an ext4 (or other) filesystem with a firmware binary file on it? The latter case might mean the initrd mounts the radio firmware along with everything else it does before handing over control to android, so it might mean you can change it to a partition on the external card.




    I have basic knowledge of what this mean (after some googling). However, I still don't quite understand, and I was hoping for some elaboration here (as this seems to deal with similar things to the Linux OS (inramfs.gz, kernel.gz, and the bootup process in general). Thanks!










    share|improve this question

























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I've been looking into how to boot Android form an SD card, and I came across this thread on XDA, but I am too much of a noob to understand it, and user has stated that she doesn't have the time to make a more detailed guide. This is the post with the instructions:




      Victory!



      I took sdbags's stock zip (4.3) and extracted it on my computer. I used unmkbootimg to extract the initramfs.gz and kernel.gz from the boot.img in the ROM. I unzipped the initramfs and un-cpio'd it, then modified macallan.fstab to refer to /dev/block/mmcblk1p1 for /data, p2 for /system, and p3 for /cache. I also modified init.macallan.rc to avoid having it try to make filesystems on the EMMC -- I want it not to try touching the EMMC at all.



      Next I rebuilt the initramfs.gz. I bought a good quality class 10 microsd and partitioned it on my computer with 3 primary partitions, one for /data, one for /system, and one for /cache (about 2GB and 1GB for /system and /cache). I made ext4 filesystems on all 3 partitions, mounted p2, and copied the rom over and installed it by hand using the updater-script as a guide. Then I unmounted and popped the SD card into my TF701t.



      To boot it, I put my tablet into fastboot mode. I booted the kernel and ramdisk using 'fastboot boot' -- no need for kexec from recovery. I can do this without any reliance whatsoever on the internal EMMC. It took awhile to boot up, but it booted first try. The app drawer was a bit slow to come up, but I'm pretty happy I get to use my tablet at all! This whole process turned out to be MUCH easier than I expected it would be, and I'm quite confident I could do this to boot any ROM I wanted. I only use stock because of driver issues with my bluetooth keyboard.



      Still willing to try my hand at maintaining cromi's ROM2SD branch though



      Thanks everyone for all of your help!




      Then there was more elaboration here:




      To answer your question, I don't know. My method works for booting because I changed the ROM's idea of what device/partition /system and /data live on. I don't know where your device holds its idea of which partition holds the radio firmware. If it's somewhere in the initramfs, then you can modify it in the same way I modified mine and tell it to load the radio off of the external SD. If the ROM is hardcoded to look for the radio on the internal SD, then you may be screwed.



      A quick note on the initramfs for those curious: the initramfs (initrd, initramdisk, etc) is a compressed miniature linux filesystem holding the bare essentials necessary to get a linux system running. The initrd's job is to figure out where the filesystem(s) are that hold the actual linux installation, mount them, and hand over control to that linux system.



      It's not absolutely necessary to use an initrd to boot a linux system, but it makes it a lot easier because you can load drivers, prepare the filesystem, etc. The stock ROM for the TF701t (and I'm assuming most, if not all ROMs for all android devices) use an initrd to mount /system, /data, and any other necessary partitions. I'm just telling it to mount those from my external SD instead of internal.



      I don't know how radio partitions work. Is it just a raw firmware image on the partition, or is it an ext4 (or other) filesystem with a firmware binary file on it? The latter case might mean the initrd mounts the radio firmware along with everything else it does before handing over control to android, so it might mean you can change it to a partition on the external card.




      I have basic knowledge of what this mean (after some googling). However, I still don't quite understand, and I was hoping for some elaboration here (as this seems to deal with similar things to the Linux OS (inramfs.gz, kernel.gz, and the bootup process in general). Thanks!










      share|improve this question















      I've been looking into how to boot Android form an SD card, and I came across this thread on XDA, but I am too much of a noob to understand it, and user has stated that she doesn't have the time to make a more detailed guide. This is the post with the instructions:




      Victory!



      I took sdbags's stock zip (4.3) and extracted it on my computer. I used unmkbootimg to extract the initramfs.gz and kernel.gz from the boot.img in the ROM. I unzipped the initramfs and un-cpio'd it, then modified macallan.fstab to refer to /dev/block/mmcblk1p1 for /data, p2 for /system, and p3 for /cache. I also modified init.macallan.rc to avoid having it try to make filesystems on the EMMC -- I want it not to try touching the EMMC at all.



      Next I rebuilt the initramfs.gz. I bought a good quality class 10 microsd and partitioned it on my computer with 3 primary partitions, one for /data, one for /system, and one for /cache (about 2GB and 1GB for /system and /cache). I made ext4 filesystems on all 3 partitions, mounted p2, and copied the rom over and installed it by hand using the updater-script as a guide. Then I unmounted and popped the SD card into my TF701t.



      To boot it, I put my tablet into fastboot mode. I booted the kernel and ramdisk using 'fastboot boot' -- no need for kexec from recovery. I can do this without any reliance whatsoever on the internal EMMC. It took awhile to boot up, but it booted first try. The app drawer was a bit slow to come up, but I'm pretty happy I get to use my tablet at all! This whole process turned out to be MUCH easier than I expected it would be, and I'm quite confident I could do this to boot any ROM I wanted. I only use stock because of driver issues with my bluetooth keyboard.



      Still willing to try my hand at maintaining cromi's ROM2SD branch though



      Thanks everyone for all of your help!




      Then there was more elaboration here:




      To answer your question, I don't know. My method works for booting because I changed the ROM's idea of what device/partition /system and /data live on. I don't know where your device holds its idea of which partition holds the radio firmware. If it's somewhere in the initramfs, then you can modify it in the same way I modified mine and tell it to load the radio off of the external SD. If the ROM is hardcoded to look for the radio on the internal SD, then you may be screwed.



      A quick note on the initramfs for those curious: the initramfs (initrd, initramdisk, etc) is a compressed miniature linux filesystem holding the bare essentials necessary to get a linux system running. The initrd's job is to figure out where the filesystem(s) are that hold the actual linux installation, mount them, and hand over control to that linux system.



      It's not absolutely necessary to use an initrd to boot a linux system, but it makes it a lot easier because you can load drivers, prepare the filesystem, etc. The stock ROM for the TF701t (and I'm assuming most, if not all ROMs for all android devices) use an initrd to mount /system, /data, and any other necessary partitions. I'm just telling it to mount those from my external SD instead of internal.



      I don't know how radio partitions work. Is it just a raw firmware image on the partition, or is it an ext4 (or other) filesystem with a firmware binary file on it? The latter case might mean the initrd mounts the radio firmware along with everything else it does before handing over control to android, so it might mean you can change it to a partition on the external card.




      I have basic knowledge of what this mean (after some googling). However, I still don't quite understand, and I was hoping for some elaboration here (as this seems to deal with similar things to the Linux OS (inramfs.gz, kernel.gz, and the bootup process in general). Thanks!







      kernel boot boot-loader android initramfs






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 7 mins ago

























      asked Feb 18 '16 at 23:46









      Keychain1

      2315




      2315




















          1 Answer
          1






          active

          oldest

          votes

















          up vote
          1
          down vote













          I don't really know of a standard way of booting from an SD card, how easy it is or isn't depends mostly on what Android device you are using:



          For example if you have a Nexus device you can just download MultiROM from the Play store and you're good to go. It's never normally that simple; I currently am trying to get my Mediatek MT6575 based device to boot from SD card as the internal eMMC memory is dead, and have not managed it yet, so I guess right now it's 'bricked'.




          What I'm trying to say here is that there is no step-by-step guide that will work with all devices as there large range of devices, each with different partition layouts, kernels, etc.



          I'll provide some examples on how to boot from SD for a few different devices, and hopefully you'll be able to see whats involved, also if you say what device you have I may have come across a working method for that device.



          Boot Android from SdCard wiki - This is on a site for 'sunxi' android tablets, but the info is helpful as it contains info on editing the recovery and boot partitions, even if the SD card images will only work on sunxi tablets.



          Use SD instead of eMMC on GS3 - Gives step by step on how to partitions the SD card and editing boot.img. I've tried this method on my MT6575 but just changing info on the fstab wasn't enough, it was still trying to boot from eMMC for my device but if you have a GS3 this is ideal.



          Multiboot for MediaTek devices - How to have 1 rom on internal eMMC and a 2nd rom on the SD card. Gives a rough step by step, may work if you have a mediatek device.



          Convert ROM to boot from SD card - Written with a Nokia X2 in mind, but I'm going thru this method right now, mounts both system partitions at once, mount point for SD system partition is /system-ext



          That's all I have for now, if you manage to boot from SD could you please post a comment saying what method you used and what device you used, thanks. :)






          share|improve this answer






















          • Why no direct links to those xda-developers pages?
            – phk
            Jul 7 '16 at 18:35











          • I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
            – HypnoToad
            Jul 7 '16 at 18:45











          • Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
            – HalosGhost
            Jul 7 '16 at 18:52










          • Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
            – HypnoToad
            Jul 7 '16 at 19:06










          Your Answer







          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "106"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          convertImagesToLinks: false,
          noModals: false,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













           

          draft saved


          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f264223%2fhow-to-modify-android-boot-sequence-in-order-to-boot-from-an-sd-card%23new-answer', 'question_page');

          );

          Post as a guest






























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes








          up vote
          1
          down vote













          I don't really know of a standard way of booting from an SD card, how easy it is or isn't depends mostly on what Android device you are using:



          For example if you have a Nexus device you can just download MultiROM from the Play store and you're good to go. It's never normally that simple; I currently am trying to get my Mediatek MT6575 based device to boot from SD card as the internal eMMC memory is dead, and have not managed it yet, so I guess right now it's 'bricked'.




          What I'm trying to say here is that there is no step-by-step guide that will work with all devices as there large range of devices, each with different partition layouts, kernels, etc.



          I'll provide some examples on how to boot from SD for a few different devices, and hopefully you'll be able to see whats involved, also if you say what device you have I may have come across a working method for that device.



          Boot Android from SdCard wiki - This is on a site for 'sunxi' android tablets, but the info is helpful as it contains info on editing the recovery and boot partitions, even if the SD card images will only work on sunxi tablets.



          Use SD instead of eMMC on GS3 - Gives step by step on how to partitions the SD card and editing boot.img. I've tried this method on my MT6575 but just changing info on the fstab wasn't enough, it was still trying to boot from eMMC for my device but if you have a GS3 this is ideal.



          Multiboot for MediaTek devices - How to have 1 rom on internal eMMC and a 2nd rom on the SD card. Gives a rough step by step, may work if you have a mediatek device.



          Convert ROM to boot from SD card - Written with a Nokia X2 in mind, but I'm going thru this method right now, mounts both system partitions at once, mount point for SD system partition is /system-ext



          That's all I have for now, if you manage to boot from SD could you please post a comment saying what method you used and what device you used, thanks. :)






          share|improve this answer






















          • Why no direct links to those xda-developers pages?
            – phk
            Jul 7 '16 at 18:35











          • I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
            – HypnoToad
            Jul 7 '16 at 18:45











          • Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
            – HalosGhost
            Jul 7 '16 at 18:52










          • Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
            – HypnoToad
            Jul 7 '16 at 19:06














          up vote
          1
          down vote













          I don't really know of a standard way of booting from an SD card, how easy it is or isn't depends mostly on what Android device you are using:



          For example if you have a Nexus device you can just download MultiROM from the Play store and you're good to go. It's never normally that simple; I currently am trying to get my Mediatek MT6575 based device to boot from SD card as the internal eMMC memory is dead, and have not managed it yet, so I guess right now it's 'bricked'.




          What I'm trying to say here is that there is no step-by-step guide that will work with all devices as there large range of devices, each with different partition layouts, kernels, etc.



          I'll provide some examples on how to boot from SD for a few different devices, and hopefully you'll be able to see whats involved, also if you say what device you have I may have come across a working method for that device.



          Boot Android from SdCard wiki - This is on a site for 'sunxi' android tablets, but the info is helpful as it contains info on editing the recovery and boot partitions, even if the SD card images will only work on sunxi tablets.



          Use SD instead of eMMC on GS3 - Gives step by step on how to partitions the SD card and editing boot.img. I've tried this method on my MT6575 but just changing info on the fstab wasn't enough, it was still trying to boot from eMMC for my device but if you have a GS3 this is ideal.



          Multiboot for MediaTek devices - How to have 1 rom on internal eMMC and a 2nd rom on the SD card. Gives a rough step by step, may work if you have a mediatek device.



          Convert ROM to boot from SD card - Written with a Nokia X2 in mind, but I'm going thru this method right now, mounts both system partitions at once, mount point for SD system partition is /system-ext



          That's all I have for now, if you manage to boot from SD could you please post a comment saying what method you used and what device you used, thanks. :)






          share|improve this answer






















          • Why no direct links to those xda-developers pages?
            – phk
            Jul 7 '16 at 18:35











          • I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
            – HypnoToad
            Jul 7 '16 at 18:45











          • Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
            – HalosGhost
            Jul 7 '16 at 18:52










          • Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
            – HypnoToad
            Jul 7 '16 at 19:06












          up vote
          1
          down vote










          up vote
          1
          down vote









          I don't really know of a standard way of booting from an SD card, how easy it is or isn't depends mostly on what Android device you are using:



          For example if you have a Nexus device you can just download MultiROM from the Play store and you're good to go. It's never normally that simple; I currently am trying to get my Mediatek MT6575 based device to boot from SD card as the internal eMMC memory is dead, and have not managed it yet, so I guess right now it's 'bricked'.




          What I'm trying to say here is that there is no step-by-step guide that will work with all devices as there large range of devices, each with different partition layouts, kernels, etc.



          I'll provide some examples on how to boot from SD for a few different devices, and hopefully you'll be able to see whats involved, also if you say what device you have I may have come across a working method for that device.



          Boot Android from SdCard wiki - This is on a site for 'sunxi' android tablets, but the info is helpful as it contains info on editing the recovery and boot partitions, even if the SD card images will only work on sunxi tablets.



          Use SD instead of eMMC on GS3 - Gives step by step on how to partitions the SD card and editing boot.img. I've tried this method on my MT6575 but just changing info on the fstab wasn't enough, it was still trying to boot from eMMC for my device but if you have a GS3 this is ideal.



          Multiboot for MediaTek devices - How to have 1 rom on internal eMMC and a 2nd rom on the SD card. Gives a rough step by step, may work if you have a mediatek device.



          Convert ROM to boot from SD card - Written with a Nokia X2 in mind, but I'm going thru this method right now, mounts both system partitions at once, mount point for SD system partition is /system-ext



          That's all I have for now, if you manage to boot from SD could you please post a comment saying what method you used and what device you used, thanks. :)






          share|improve this answer














          I don't really know of a standard way of booting from an SD card, how easy it is or isn't depends mostly on what Android device you are using:



          For example if you have a Nexus device you can just download MultiROM from the Play store and you're good to go. It's never normally that simple; I currently am trying to get my Mediatek MT6575 based device to boot from SD card as the internal eMMC memory is dead, and have not managed it yet, so I guess right now it's 'bricked'.




          What I'm trying to say here is that there is no step-by-step guide that will work with all devices as there large range of devices, each with different partition layouts, kernels, etc.



          I'll provide some examples on how to boot from SD for a few different devices, and hopefully you'll be able to see whats involved, also if you say what device you have I may have come across a working method for that device.



          Boot Android from SdCard wiki - This is on a site for 'sunxi' android tablets, but the info is helpful as it contains info on editing the recovery and boot partitions, even if the SD card images will only work on sunxi tablets.



          Use SD instead of eMMC on GS3 - Gives step by step on how to partitions the SD card and editing boot.img. I've tried this method on my MT6575 but just changing info on the fstab wasn't enough, it was still trying to boot from eMMC for my device but if you have a GS3 this is ideal.



          Multiboot for MediaTek devices - How to have 1 rom on internal eMMC and a 2nd rom on the SD card. Gives a rough step by step, may work if you have a mediatek device.



          Convert ROM to boot from SD card - Written with a Nokia X2 in mind, but I'm going thru this method right now, mounts both system partitions at once, mount point for SD system partition is /system-ext



          That's all I have for now, if you manage to boot from SD could you please post a comment saying what method you used and what device you used, thanks. :)







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Apr 13 '17 at 12:18









          Community♦

          1




          1










          answered Jul 7 '16 at 18:32









          HypnoToad

          111




          111











          • Why no direct links to those xda-developers pages?
            – phk
            Jul 7 '16 at 18:35











          • I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
            – HypnoToad
            Jul 7 '16 at 18:45











          • Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
            – HalosGhost
            Jul 7 '16 at 18:52










          • Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
            – HypnoToad
            Jul 7 '16 at 19:06
















          • Why no direct links to those xda-developers pages?
            – phk
            Jul 7 '16 at 18:35











          • I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
            – HypnoToad
            Jul 7 '16 at 18:45











          • Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
            – HalosGhost
            Jul 7 '16 at 18:52










          • Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
            – HypnoToad
            Jul 7 '16 at 19:06















          Why no direct links to those xda-developers pages?
          – phk
          Jul 7 '16 at 18:35





          Why no direct links to those xda-developers pages?
          – phk
          Jul 7 '16 at 18:35













          I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
          – HypnoToad
          Jul 7 '16 at 18:45





          I don't have enough reputation on this site to post more than 2 links, once I have more than 10 tep I'll edit the post with the links in.
          – HypnoToad
          Jul 7 '16 at 18:45













          Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
          – HalosGhost
          Jul 7 '16 at 18:52




          Normally, link-only answers are not ideal, but you have explained the motivations for your links very well (that there is no general procedure, and that your links are just examples for various kinds of hardware). I have inlined your links.
          – HalosGhost
          Jul 7 '16 at 18:52












          Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
          – HypnoToad
          Jul 7 '16 at 19:06




          Thanks for editing the links in. If I ever get my device to boot from SD then I'll post a follow up on how I managed it, with a step-by-step method, as that would be better than a link.
          – HypnoToad
          Jul 7 '16 at 19:06

















           

          draft saved


          draft discarded















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f264223%2fhow-to-modify-android-boot-sequence-in-order-to-boot-from-an-sd-card%23new-answer', 'question_page');

          );

          Post as a guest













































































          Popular posts from this blog

          How to check contact read email or not when send email to Individual?

          Bahrain

          Postfix configuration issue with fips on centos 7; mailgun relay