HomeSort by relevance Sort by last modified time
    Searched refs:ramdisk (Results 1 - 18 of 18) 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...]
  /device/samsung/tuna/reflash-bootloader/
build-image.sh 4 RAMDISK=/tmp/ramdisk.$$.img
9 mkbootfs ${DIR} | minigzip > ${RAMDISK}
10 mkbootimg --kernel ${OUT}/kernel --ramdisk ${RAMDISK} -o tuna-reflash-bootloader.img
14 rm ${RAMDISK}
  /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,
  /build/core/tasks/
factory_ramdisk.mk 33 define install-one-factory-ramdisk-module
53 $(foreach d,$(_fr_dests),$(call install-one-factory-ramdisk-module,$(d),$(_fr_m_built))) \
85 $(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,
80 ramdisk, ramdisk_size);
fastboot.c 50 void *ramdisk, unsigned ramdisk_size,
231 " boot <kernel> [ <ramdisk> ] download and boot kernel\n"
232 " flash:raw boot <kernel> [ <ramdisk> ] create bootimage and flash it\n"
250 void *load_bootable_image(unsigned page_size, const char *kernel, const char *ramdisk,
273 if(ramdisk) {
274 fprintf(stderr, "cannot boot a boot.img *and* ramdisk\n");
282 if(ramdisk) {
283 rdata = load_file(ramdisk, &rsize);
285 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/recovery/
Android.mk 37 # This binary is in the recovery ramdisk, which is otherwise a copy of root.
40 # TODO: Build the ramdisk image in a more principled way.
  /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)
  /external/qemu/android/
cmdline-options.h 69 CFG_PARAM( ramdisk, "<file>", "ramdisk image (default <system>/ramdisk.img" )
main-common.c 859 if (!opts->ramdisk) {
860 opts->ramdisk = _getSdkSystemImage(opts->sysdir, "-ramdisk", "ramdisk.img");
861 D("autoconfig: -ramdisk %s", opts->ramdisk);
    [all...]
main.c 502 /* opts->ramdisk is never NULL (see createAVD) here */
503 if (opts->ramdisk) {
505 hw->disk_ramdisk_path = ASTRDUP(opts->ramdisk);
509 D("autoconfig: -ramdisk %s", hw->disk_ramdisk_path);
    [all...]
  /build/core/
Makefile 346 # the ramdisk
353 BUILT_RAMDISK_TARGET := $(PRODUCT_OUT)/ramdisk.img
373 --ramdisk $(INSTALLED_RAMDISK_TARGET)
412 # can produce a bootimage, though, and emulator targets need the ramdisk
413 # instead. Fake it out by calling the ramdisk the bootimage.
585 recovery_ramdisk := $(PRODUCT_OUT)/ramdisk-recovery.img
605 --ramdisk $(recovery_ramdisk)
652 echo Copying baseline ramdisk...
655 echo Modifying ramdisk contents...
    [all...]
main.mk 676 .PHONY: ramdisk
677 ramdisk: $(INSTALLED_RAMDISK_TARGET)
  /development/build/
sdk.atree 130 ramdisk.img system-images/${PLATFORM_NAME}/${TARGET_CPU_ABI}/ramdisk.img
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 1486 milliseconds