You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
352 B
14 lines
352 B
echo BOOTIMG½â°ü¹¤¾ß
|
|
unpackbootimg -i boot.img
|
|
mkdir initrd
|
|
move boot.img-ramdisk.gz initrd
|
|
cd initrd
|
|
if "%sign_decompress_mode%"=="gzip" gzip -d -c boot.img-ramdisk.gz | cpio -i
|
|
if "%sign_decompress_mode%"=="xz" (
|
|
ren boot.img-ramdisk.gz boot.img-ramdisk.xz
|
|
xz -d -c boot.img-ramdisk.xz | cpio -i
|
|
)
|
|
|
|
sleep 2
|
|
del boot.img-ramdisk.gz
|
|
cd .. |