Editing Mounting HDD on PC
Jump to navigation
Jump to search
The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then publish the changes below to finish undoing the edit.
Latest revision | Your text | ||
Line 530: | Line 530: | ||
=Making Changes to cell_ext_os_area VFLASH Region= | =Making Changes to cell_ext_os_area VFLASH Region= | ||
* It's the VFLASH region where petitboot is stored. | * It's the VFLASH region where petitboot is stored. | ||
* Useful for OtherOS++ users. | * Useful for OtherOS++ users. | ||
Line 560: | Line 559: | ||
# it begins at offset 0xe740200 | # it begins at offset 0xe740200 | ||
dd if=/dev/mapper/hdd_crypt1 of=params.bin bs=1 count=512 skip=$(( | dd if=/dev/mapper/hdd_crypt1 of=params.bin bs=1 count=512 skip=$((0x0xe740200)) | ||
# now clear the boot flag | # now clear the boot flag | ||
Line 567: | Line 566: | ||
# now we write it back | # now we write it back | ||
dd of=/dev/mapper/hdd_crypt1 if=params.bin bs=1 count=512 seek=$(( | dd of=/dev/mapper/hdd_crypt1 if=params.bin bs=1 count=512 seek=$((0x0xe740200)) | ||
sync | sync |