HomeSort by relevance Sort by last modified time
    Searched refs:ramdisk (Results 1 - 17 of 17) 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...]
  /system/core/fastbootd/
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,
  /build/core/tasks/
factory_ramdisk.mk 37 define install-one-factory-ramdisk-module
57 $(foreach d,$(_fr_dests),$(call install-one-factory-ramdisk-module,$(d),$(_fr_m_built))) \
89 $(MKBOOTIMG) --kernel $(TARGET_RAMDISK_KERNEL) --ramdisk $(INSTALLED_FACTORY_RAMDISK_FS) \
sdk-addon.mk 60 $(BUILT_RAMDISK_TARGET):images/$(TARGET_CPU_ABI)/ramdisk.img \
  /system/core/fastboot/
bootimg.c 41 void *ramdisk, unsigned ramdisk_size, unsigned ramdisk_offset,
83 ramdisk, ramdisk_size);
fastboot.c 65 void *ramdisk, unsigned ramdisk_size, unsigned ramdisk_offset,
304 " boot <kernel> [ <ramdisk> ] download and boot kernel\n"
305 " flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it\n"
330 void *load_bootable_image(const char *kernel, const char *ramdisk,
353 if(ramdisk) {
354 fprintf(stderr, "cannot boot a boot.img *and* ramdisk\n");
362 if(ramdisk) {
363 rdata = load_file(ramdisk, &rsize);
365 fprintf(stderr,"cannot load '%s': %s\n", ramdisk, strerror(errno));
  /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 63 # This binary is in the recovery ramdisk, which is otherwise a copy of root.
66 # 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 1079 if (!opts->ramdisk) {
1080 opts->ramdisk = _getSdkSystemImage(opts->sysdir, "-ramdisk", "ramdisk.img");
1081 D("autoconfig: -ramdisk %s", opts->ramdisk);
    [all...]
main.c 509 /* opts->ramdisk is never NULL (see createAVD) here */
510 if (opts->ramdisk) {
512 hw->disk_ramdisk_path = ASTRDUP(opts->ramdisk);
516 D("autoconfig: -ramdisk %s", hw->disk_ramdisk_path);
    [all...]
  /build/core/
Makefile 373 # the ramdisk
380 BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
388 .PHONY: ramdisk-nodeps
389 ramdisk-nodeps: $(MKBOOTFS) | $(MINIGZIP)
400 --ramdisk $(INSTALLED_RAMDISK_TARGET)
451 # can produce a bootimage, though, and emulator targets need the ramdisk
452 # instead. Fake it out by calling the ramdisk the bootimage.
633 recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
670 --ramdisk $(recovery_ramdisk)
715 @echo Copying baseline ramdisk..
    [all...]
main.mk 83 ramdisk-nodeps \
732 .PHONY: ramdisk
733 ramdisk: $(INSTALLED_RAMDISK_TARGET)
    [all...]
  /development/build/
sdk.atree 186 ramdisk.img system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/ramdisk.img
  /prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar 

Completed in 104 milliseconds