HomeSort by relevance Sort by last modified time
    Searched refs:ramdisk (Results 1 - 14 of 14) sorted by null

  /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 48 void *ramdisk, unsigned ramdisk_size,
223 " boot <kernel> [ <ramdisk> ] download and boot kernel\n"
224 " flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it\n"
241 void *load_bootable_image(unsigned page_size, const char *kernel, const char *ramdisk,
264 if(ramdisk) {
265 fprintf(stderr, "cannot boot a boot.img *and* ramdisk\n");
273 if(ramdisk) {
274 rdata = load_file(ramdisk, &rsize);
276 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 25 # This binary is in the recovery ramdisk, which is otherwise a copy of root.
28 # 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.c     [all...]
  /build/core/
Makefile 311 # the ramdisk
318 BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
334 --ramdisk $(INSTALLED_RAMDISK_TARGET)
373 # can produce a bootimage, though, and emulator targets need the ramdisk
374 # instead. Fake it out by calling the ramdisk the bootimage.
603 recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
623 --ramdisk $(recovery_ramdisk)
669 echo Copying baseline ramdisk...
672 echo Modifying ramdisk contents...
    [all...]
main.mk 664 .PHONY: ramdisk
665 ramdisk: $(INSTALLED_RAMDISK_TARGET)
  /build/core/tasks/
sdk-addon.mk 60 $(BUILT_RAMDISK_TARGET):images/ramdisk.img \
  /development/build/
sdk.atree 70 ramdisk.img platforms/${PLATFORM_NAME}/images/ramdisk.img

Completed in 1058 milliseconds