Search:

Type: Posts; User: Nominal Animal

Search: Search took 0.03 seconds.

  1. Check the directory and parent directory access...

    Check the directory and parent directory access mode, and mount options for the flash (just run mount). Linux will remount the filesystem read-only if there are problems writing to it; if that has...
  2. Here are the three POSIX.1-2008 C functions I...

    Here are the three POSIX.1-2008 C functions I would use for something like this:

    error = verify_directory(parent, directory);

    This function verifies that directory exists, relative to parent.
    ...
  3. Just realized that this: creates a directory...

    Just realized that this:

    creates a directory with access mode d------rwx, which denies access to both the user and the group. Please use
    mkdir(mStoredFreqIntervalDetails, 0777);
    The 0777 means...
  4. If you modify your code to #define...

    If you modify your code to


    #define FREQINTDIR "/htvclnsvc/"

    static Bool mWritetoFlashFreqInt(void)
    {
    FILE *fptr;

    memset(mStoredFreqIntervalDetails, '\0', MAX_URISIZE);
Results 1 to 4 of 4