/external/yaffs2/yaffs2/direct/ |
yaffs_ramdisk.c | 59 static yramdisk_Device ramdisk; variable 78 ramdisk.nBlocks = (SIZE_IN_MB * 1024 * 1024)/(16 * 1024); 80 ramdisk.block = YMALLOC(sizeof(yramdisk_Block *) * ramdisk.nBlocks); 82 if(!ramdisk.block) return 0; 84 for(i=0; i <ramdisk.nBlocks; i++) 86 ramdisk.block[i] = NULL; 89 for(i=0; i <ramdisk.nBlocks && !fail; i++) 91 if((ramdisk.block[i] = YMALLOC(sizeof(yramdisk_Block))) == 0) 106 YFREE(ramdisk.block[i]) [all...] |
yaffs_flashif.c | 55 static yflash_Device ramdisk; variable 73 ramdisk.nBlocks = (SIZE_IN_MB * 1024 * 1024)/(16 * 1024); 75 ramdisk.block = YMALLOC(sizeof(yflash_Block *) * ramdisk.nBlocks); 77 if(!ramdisk.block) return 0; 79 for(i=0; i <ramdisk.nBlocks; i++) 81 ramdisk.block[i] = NULL; 84 for(i=0; i <ramdisk.nBlocks && !fail; i++) 86 if((ramdisk.block[i] = YMALLOC(sizeof(yflash_Block))) == 0) 101 YFREE(ramdisk.block[i]) [all...] |
/bootable/bootloader/legacy/include/boot/ |
bootimg.h | 69 ** | ramdisk | m pages 79 ** 1. kernel and ramdisk are required (size != 0) 81 ** 3. load each element (kernel, ramdisk, second) at 91 void *ramdisk, unsigned ramdisk_size,
|
/system/core/fastboot/ |
bootimg.c | 41 void *ramdisk, unsigned ramdisk_size, 80 ramdisk, ramdisk_size);
|
fastboot.c | 50 void *ramdisk, unsigned ramdisk_size, 225 " boot <kernel> [ <ramdisk> ] download and boot kernel\n" 226 " flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it\n" 244 void *load_bootable_image(unsigned page_size, const char *kernel, const char *ramdisk, 267 if(ramdisk) { 268 fprintf(stderr, "cannot boot a boot.img *and* ramdisk\n"); 276 if(ramdisk) { 277 rdata = load_file(ramdisk, &rsize); 279 fprintf(stderr,"cannot load '%s'\n", ramdisk);
|
/external/genext2fs/ |
mkbootimg_ext2.sh | 4 RAMDISK= 18 --ramdisk) 19 RAMDISK=$2 53 echo " --ramdisk <ramdisk> The ramdisk to be used" 71 if [ -z "$KERNEL" -o -z "$RAMDISK" -o -z "$GENEXT2FS" -o -z "$TMPDIR" -o \ 77 if ! [ -x "$GENEXT2FS" -a -f "$RAMDISK" -a -f "$KERNEL" ]; then 87 cp -f $RAMDISK $TMPDIR/ramdisk [all...] |
/bootable/diskinstaller/ |
config.mk | 64 # Build the installer ramdisk image 67 installer_ramdisk := $(TARGET_INSTALLER_OUT)/ramdisk-installer.img 94 @echo Copying baseline ramdisk... 101 @echo Modifying ramdisk contents... 111 @echo ----- Made installer ramdisk -[ $@ ]- 114 # Now the installer boot image which includes the kernel and the ramdisk 117 --ramdisk $(installer_ramdisk)
|
/bootable/recovery/ |
Android.mk | 29 # This binary is in the recovery ramdisk, which is otherwise a copy of root. 32 # TODO: Build the ramdisk image in a more principled way.
|
/external/qemu/android/ |
cmdline-options.h | 69 CFG_PARAM( ramdisk, "<file>", "ramdisk image (default <system>/ramdisk.img" )
|
main-common.c | 856 if (!opts->ramdisk) { 857 opts->ramdisk = _getSdkSystemImage(opts->sysdir, "-ramdisk", "ramdisk.img"); 858 D("autoconfig: -ramdisk %s", opts->ramdisk); [all...] |
main.c | 558 /* opts->ramdisk is never NULL (see createAVD) here */ 559 if (opts->ramdisk) { 561 hw->disk_ramdisk_path = ASTRDUP(opts->ramdisk); 565 D("autoconfig: -ramdisk %s", hw->disk_ramdisk_path); [all...] |
/development/build/ |
sdk.atree | 124 ramdisk.img system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/ramdisk.img
|
/build/core/ |
Makefile | 336 # the ramdisk 343 BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img 359 --ramdisk $(INSTALLED_RAMDISK_TARGET) 398 # can produce a bootimage, though, and emulator targets need the ramdisk 399 # instead. Fake it out by calling the ramdisk the bootimage. 632 recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img 652 --ramdisk $(recovery_ramdisk) 699 echo Copying baseline ramdisk... 702 echo Modifying ramdisk contents... [all...] |
main.mk | 722 .PHONY: ramdisk 723 ramdisk: $(INSTALLED_RAMDISK_TARGET)
|
/build/core/tasks/ |
sdk-addon.mk | 60 $(BUILT_RAMDISK_TARGET):images/$(TARGET_CPU_ABI)/ramdisk.img \
|