Home | History | Annotate | Download | only in android

Lines Matching full:sdcard

729         /* No SD Card emulation, so -sdcard will be ignored */
730 if (opts->sdcard) {
731 dwarning( "Emulated hardware doesn't support SD Cards. -sdcard option ignored." );
732 opts->sdcard = NULL;
735 /* Auto-configure -sdcard if it is not available */
736 if (!opts->sdcard) {
738 /* If -datadir <path> is used, look for a sdcard.img file here */
742 opts->sdcard = strdup(tmp);
748 opts->sdcard = avdInfo_getSdCardPath(avd);
749 if (opts->sdcard != NULL) {
756 if (opts->sdcard) {
757 D("autoconfig: -sdcard %s", opts->sdcard);
762 if(opts->sdcard) {
764 if (path_get_size(opts->sdcard, &size) == 0) {
765 /* see if we have an sdcard image. get its size if it exists */
770 fprintf(stderr, "### WARNING: SD Card files must be at least 9MB, ignoring '%s'\n", opts->sdcard);
772 hw->hw_sdCard_path = ASTRDUP(opts->sdcard);
775 dwarning("no SD Card image at '%s'", opts->sdcard);