mirror of
https://github.com/wiidev/usbloadergx.git
synced 2024-11-16 00:15:08 +01:00
0f17471b27
*Added sources of the custom libs to the branches *Fixed crash when switching from list layout to grid/carousel layout *Removed 1:1 copy option because its meaningless and almost the same as installing all partitions *Fixed install partition selection. This option needs a reset. Go to settings and reselect your option for this. *Fixed schinese and tchinese language modes (filename bugs. has to be schinese.lang and tchinese.lang like on SVN) *Fixed bug in sound buffer circle *Fixed incorrect behaviour of x-flip when selecting system like (thx Cyan for the patch) *Accept ios revision 65535 for Waninkokos IOSes (thx to PPSainity for pointing it out) *Merged the new theming style branch into trunk. Just as a reminder: ALL old themes will not work until the themers did port it to the new style! *Removed old theme style completely Theme example: The example file of the theme is the Default.them file. It can be found in the SVN trunk. Change in loading of themes: When selecting a theme now a list of all .them files in a folder is displayed. The image folder of that theme has to be in the same folder as the .them file. The image path is defined in the head of the .them file in the line with "Image-Folder: Example\n".
92 lines
1.6 KiB
C
92 lines
1.6 KiB
C
/*
|
|
* getsectsize.c --- get the sector size of a device.
|
|
*
|
|
* Copyright (C) 1995, 1995 Theodore Ts'o.
|
|
* Copyright (C) 2003 VMware, Inc.
|
|
*
|
|
* %Begin-Header%
|
|
* This file may be redistributed under the terms of the GNU Library
|
|
* General Public License, version 2.
|
|
* %End-Header%
|
|
*/
|
|
|
|
#define _LARGEFILE_SOURCE
|
|
#define _LARGEFILE64_SOURCE
|
|
|
|
#include <stdio.h>
|
|
#if HAVE_UNISTD_H
|
|
#include <unistd.h>
|
|
#endif
|
|
#if HAVE_ERRNO_H
|
|
#include <errno.h>
|
|
#endif
|
|
#include <fcntl.h>
|
|
#ifdef HAVE_LINUX_FD_H
|
|
#include <sys/ioctl.h>
|
|
#include <linux/fd.h>
|
|
#endif
|
|
|
|
#if defined(__linux__) && defined(_IO)
|
|
#if !defined(BLKSSZGET)
|
|
#define BLKSSZGET _IO(0x12,104)/* get block device sector size */
|
|
#endif
|
|
#if !defined(BLKPBSZGET)
|
|
#define BLKPBSZGET _IO(0x12,123)/* get block physical sector size */
|
|
#endif
|
|
#endif
|
|
|
|
#include "ext2_fs.h"
|
|
#include "ext2fs.h"
|
|
|
|
/*
|
|
* Returns the logical sector size of a device
|
|
*/
|
|
errcode_t ext2fs_get_device_sectsize(const char *file, int *sectsize)
|
|
{
|
|
int fd;
|
|
|
|
#ifdef HAVE_OPEN64
|
|
fd = open64(file, O_RDONLY);
|
|
#else
|
|
fd = open(file, O_RDONLY);
|
|
#endif
|
|
if (fd < 0)
|
|
return errno;
|
|
|
|
#ifdef BLKSSZGET
|
|
if (ioctl(fd, BLKSSZGET, sectsize) >= 0) {
|
|
close(fd);
|
|
return 0;
|
|
}
|
|
#endif
|
|
*sectsize = 0;
|
|
close(fd);
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Returns the physical sector size of a device
|
|
*/
|
|
errcode_t ext2fs_get_device_phys_sectsize(const char *file, int *sectsize)
|
|
{
|
|
int fd;
|
|
|
|
#ifdef HAVE_OPEN64
|
|
fd = open64(file, O_RDONLY);
|
|
#else
|
|
fd = open(file, O_RDONLY);
|
|
#endif
|
|
if (fd < 0)
|
|
return errno;
|
|
|
|
#ifdef BLKPBSZGET
|
|
if (ioctl(fd, BLKPBSZGET, sectsize) >= 0) {
|
|
close(fd);
|
|
return 0;
|
|
}
|
|
#endif
|
|
*sectsize = 0;
|
|
close(fd);
|
|
return 0;
|
|
}
|