Home | History | Annotate | Download | only in android

Lines Matching full:sdcard

776         /* No SD Card emulation, so -sdcard will be ignored */
777 if (opts->sdcard) {
778 dwarning( "Emulated hardware doesn't support SD Cards. -sdcard option ignored." );
779 opts->sdcard = NULL;
782 /* Auto-configure -sdcard if it is not available */
783 if (!opts->sdcard) {
785 /* If -datadir <path> is used, look for a sdcard.img file here */
789 opts->sdcard = strdup(tmp);
795 opts->sdcard = avdInfo_getSdCardPath(avd);
796 if (opts->sdcard != NULL) {
803 if (opts->sdcard) {
804 D("autoconfig: -sdcard %s", opts->sdcard);
809 if(opts->sdcard) {
811 if (path_get_size(opts->sdcard, &size) == 0) {
812 /* see if we have an sdcard image. get its size if it exists */
817 fprintf(stderr, "### WARNING: SD Card files must be at least 9MB, ignoring '%s'\n", opts->sdcard);
819 hw->hw_sdCard_path = ASTRDUP(opts->sdcard);
822 dwarning("no SD Card image at '%s'", opts->sdcard);