Format **/*.c with clang-format (!465)
[ci:skip-build]: already built successfully in CI [ci:skip-vercheck]
This commit is contained in:
parent
90e2cc7eff
commit
a66fed62cc
@ -63,4 +63,4 @@ package() {
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
sha512sums="f8366add6ba2ac6d9f8af89f389c69914009b12b21e6608121a78d1cd9afe287e24eafb0c21d80d096df9eee9a23cc2e6a5408f6355e27be05203186a0bf9814 crossdirect.c"
|
sha512sums="20b963322820de038257304c1eefa85767b78e242eda7459f06d70a1cfae5540a445aa7d5587024bf4d88a4bee28120ef9f5c2d24a648e71b542b9618318deb2 crossdirect.c"
|
||||||
|
@ -1,27 +1,29 @@
|
|||||||
// HOSTSPEC is defined at compile time, see APKBUILD
|
// HOSTSPEC is defined at compile time, see APKBUILD
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <libgen.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <libgen.h>
|
||||||
#include <limits.h>
|
#include <limits.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
#define NATIVE_BIN_DIR "/native/usr/lib/ccache/bin"
|
#define NATIVE_BIN_DIR "/native/usr/lib/ccache/bin"
|
||||||
|
|
||||||
void exit_userfriendly() {
|
void exit_userfriendly()
|
||||||
|
{
|
||||||
fprintf(stderr, "Please report this at: https://gitlab.com/postmarketOS/pmaports/issues\n");
|
fprintf(stderr, "Please report this at: https://gitlab.com/postmarketOS/pmaports/issues\n");
|
||||||
fprintf(stderr, "As a workaround, you can compile without crossdirect.\n");
|
fprintf(stderr, "As a workaround, you can compile without crossdirect.\n");
|
||||||
fprintf(stderr, "See 'pmbootstrap -h' for related options.\n");
|
fprintf(stderr, "See 'pmbootstrap -h' for related options.\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool argv_has_arg(int argc, char** argv, const char* arg) {
|
bool argv_has_arg(int argc, char **argv, const char *arg)
|
||||||
|
{
|
||||||
size_t arg_len = strlen(arg);
|
size_t arg_len = strlen(arg);
|
||||||
|
|
||||||
for (int i=1; i < argc; i++) {
|
for (int i = 1; i < argc; i++) {
|
||||||
if (strlen(argv[i]) < arg_len)
|
if (strlen(argv[i]) < arg_len)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
@ -31,13 +33,14 @@ bool argv_has_arg(int argc, char** argv, const char* arg) {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv) {
|
int main(int argc, char **argv)
|
||||||
|
{
|
||||||
// we have a max of four extra args ("-target", "HOSTSPEC", "--sysroot=/", "-Wl,-rpath-link=/lib:/usr/lib"), plus one ending null
|
// we have a max of four extra args ("-target", "HOSTSPEC", "--sysroot=/", "-Wl,-rpath-link=/lib:/usr/lib"), plus one ending null
|
||||||
char* newargv[argc + 5];
|
char *newargv[argc + 5];
|
||||||
char* executableName = basename(argv[0]);
|
char *executableName = basename(argv[0]);
|
||||||
char newExecutable[PATH_MAX];
|
char newExecutable[PATH_MAX];
|
||||||
bool isClang = (strcmp(executableName, "clang") == 0 || strcmp(executableName, "clang++") == 0);
|
bool isClang = (strcmp(executableName, "clang") == 0 || strcmp(executableName, "clang++") == 0);
|
||||||
bool startsWithHostSpec = (strncmp(HOSTSPEC, executableName, sizeof(HOSTSPEC) -1) == 0);
|
bool startsWithHostSpec = (strncmp(HOSTSPEC, executableName, sizeof(HOSTSPEC) - 1) == 0);
|
||||||
|
|
||||||
// linker is involved: just use qemu binary (to avoid broken cross-ld, pmaports#227)
|
// linker is involved: just use qemu binary (to avoid broken cross-ld, pmaports#227)
|
||||||
if (!argv_has_arg(argc, argv, "-c")) {
|
if (!argv_has_arg(argc, argv, "-c")) {
|
||||||
@ -50,12 +53,12 @@ int main(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (isClang || startsWithHostSpec) {
|
if (isClang || startsWithHostSpec) {
|
||||||
snprintf(newExecutable, sizeof(newExecutable), NATIVE_BIN_DIR "/%s", executableName);
|
snprintf(newExecutable, sizeof(newExecutable), NATIVE_BIN_DIR "/%s", executableName);
|
||||||
} else {
|
} else {
|
||||||
snprintf(newExecutable, sizeof(newExecutable), NATIVE_BIN_DIR "/" HOSTSPEC "-%s", executableName);
|
snprintf(newExecutable, sizeof(newExecutable), NATIVE_BIN_DIR "/" HOSTSPEC "-%s", executableName);
|
||||||
}
|
}
|
||||||
|
|
||||||
char** newArgsPtr = newargv;
|
char **newArgsPtr = newargv;
|
||||||
*newArgsPtr++ = newExecutable;
|
*newArgsPtr++ = newExecutable;
|
||||||
if (isClang) {
|
if (isClang) {
|
||||||
*newArgsPtr++ = "-target";
|
*newArgsPtr++ = "-target";
|
||||||
@ -63,16 +66,16 @@ int main(int argc, char** argv) {
|
|||||||
}
|
}
|
||||||
*newArgsPtr++ = "--sysroot=/";
|
*newArgsPtr++ = "--sysroot=/";
|
||||||
|
|
||||||
memcpy(newArgsPtr, argv + 1, sizeof(char*)*(argc - 1));
|
memcpy(newArgsPtr, argv + 1, sizeof(char *) * (argc - 1));
|
||||||
newArgsPtr += (argc - 1);
|
newArgsPtr += (argc - 1);
|
||||||
*newArgsPtr = NULL;
|
*newArgsPtr = NULL;
|
||||||
|
|
||||||
// new arguments prepared; now setup environmental vars
|
// new arguments prepared; now setup environmental vars
|
||||||
char* env[] = {"LD_PRELOAD=",
|
char *env[] = { "LD_PRELOAD=",
|
||||||
"LD_LIBRARY_PATH=/native/lib:/native/usr/lib",
|
"LD_LIBRARY_PATH=/native/lib:/native/usr/lib",
|
||||||
"CCACHE_PATH=/native/usr/bin",
|
"CCACHE_PATH=/native/usr/bin",
|
||||||
NULL};
|
NULL };
|
||||||
char* ldPreload = getenv("LD_PRELOAD");
|
char *ldPreload = getenv("LD_PRELOAD");
|
||||||
if (ldPreload) {
|
if (ldPreload) {
|
||||||
if (strcmp(ldPreload, "/usr/lib/libfakeroot.so") == 0) {
|
if (strcmp(ldPreload, "/usr/lib/libfakeroot.so") == 0) {
|
||||||
env[0] = "LD_PRELOAD=/native/usr/lib/libfakeroot.so";
|
env[0] = "LD_PRELOAD=/native/usr/lib/libfakeroot.so";
|
||||||
|
@ -22,4 +22,4 @@ package() {
|
|||||||
"${pkgdir}/usr/sbin/fbdebug"
|
"${pkgdir}/usr/sbin/fbdebug"
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="c75972faa180567fccabf63723693a3dfe6240f891eee9d580a1bfce2a8858cb746a4cc9704990f90abe94f3759ac47ca5203f1309e525d880a8663235a7e209 fbdebug.c"
|
sha512sums="c2b99024d4d3f1a47b5dcdff175b611d3c16175553076badafdaf9628ed85f95d955d09366a25d34a0f63a00c58bbdd063f6f531f60254b20420d47d7e3adb2f fbdebug.c"
|
||||||
|
@ -15,19 +15,19 @@ You should have received a copy of the GNU General Public License
|
|||||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <stdbool.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#include <errno.h>
|
#include <errno.h>
|
||||||
|
#include <fcntl.h>
|
||||||
#include <linux/fb.h>
|
#include <linux/fb.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <string.h>
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
void usage(char* appname)
|
void usage(char *appname)
|
||||||
{
|
{
|
||||||
printf("Usage: %s [-d DEV] [-i] [-c length] [-p] [-m mode] [-h]\n\
|
printf("Usage: %s [-d DEV] [-i] [-c length] [-p] [-m mode] [-h]\n\
|
||||||
-d Framebuffer device (default /dev/fb0)\n\
|
-d Framebuffer device (default /dev/fb0)\n\
|
||||||
-i Show fixed and variable screen info\n\
|
-i Show fixed and variable screen info\n\
|
||||||
-c Show colormap values (length 0-256)\n\
|
-c Show colormap values (length 0-256)\n\
|
||||||
@ -36,253 +36,244 @@ void usage(char* appname)
|
|||||||
2 => Standby\n\
|
2 => Standby\n\
|
||||||
3 => Suspend\n\
|
3 => Suspend\n\
|
||||||
4 => Off\n\
|
4 => Off\n\
|
||||||
-h Show this help\n", appname);
|
-h Show this help\n",
|
||||||
|
appname);
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_fix_screeninfo(struct fb_fix_screeninfo* scr_fix)
|
void print_fix_screeninfo(struct fb_fix_screeninfo *scr_fix)
|
||||||
{
|
{
|
||||||
// ref: https://elixir.bootlin.com/linux/latest/ident/fb_fix_screeninfo
|
// ref: https://elixir.bootlin.com/linux/latest/ident/fb_fix_screeninfo
|
||||||
printf("Fixed screen info:\n");
|
printf("Fixed screen info:\n");
|
||||||
printf("\tid = %s\n", scr_fix->id);
|
printf("\tid = %s\n", scr_fix->id);
|
||||||
printf("\tsmem_start = %lu\n", scr_fix->smem_start);
|
printf("\tsmem_start = %lu\n", scr_fix->smem_start);
|
||||||
printf("\tsmem_len = %u\n", scr_fix->smem_len);
|
printf("\tsmem_len = %u\n", scr_fix->smem_len);
|
||||||
printf("\ttype = %u\n", scr_fix->type);
|
printf("\ttype = %u\n", scr_fix->type);
|
||||||
printf("\ttype_aux = %u\n", scr_fix->type_aux);
|
printf("\ttype_aux = %u\n", scr_fix->type_aux);
|
||||||
printf("\tvisual = %u\n", scr_fix->visual);
|
printf("\tvisual = %u\n", scr_fix->visual);
|
||||||
printf("\txpanstep = %hu\n", scr_fix->xpanstep);
|
printf("\txpanstep = %hu\n", scr_fix->xpanstep);
|
||||||
printf("\typanstep = %hu\n", scr_fix->ypanstep);
|
printf("\typanstep = %hu\n", scr_fix->ypanstep);
|
||||||
printf("\tywrapstep = %hu\n", scr_fix->ywrapstep);
|
printf("\tywrapstep = %hu\n", scr_fix->ywrapstep);
|
||||||
printf("\tline_length = %u\n", scr_fix->line_length);
|
printf("\tline_length = %u\n", scr_fix->line_length);
|
||||||
printf("\tmmio_start = %lu\n", scr_fix->mmio_start);
|
printf("\tmmio_start = %lu\n", scr_fix->mmio_start);
|
||||||
printf("\tmmio_len = %u\n", scr_fix->mmio_len);
|
printf("\tmmio_len = %u\n", scr_fix->mmio_len);
|
||||||
printf("\taccel = %u\n", scr_fix->accel);
|
printf("\taccel = %u\n", scr_fix->accel);
|
||||||
printf("\tcapabilities = %hu\n", scr_fix->capabilities);
|
printf("\tcapabilities = %hu\n", scr_fix->capabilities);
|
||||||
printf("\treserved[0] = %hu\n", scr_fix->reserved[0]);
|
printf("\treserved[0] = %hu\n", scr_fix->reserved[0]);
|
||||||
printf("\treserved[1] = %hu\n", scr_fix->reserved[1]);
|
printf("\treserved[1] = %hu\n", scr_fix->reserved[1]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_var_screeninfo(struct fb_var_screeninfo* scr_var)
|
void print_var_screeninfo(struct fb_var_screeninfo *scr_var)
|
||||||
{
|
{
|
||||||
// ref: https://elixir.bootlin.com/linux/latest/ident/fb_var_screeninfo
|
// ref: https://elixir.bootlin.com/linux/latest/ident/fb_var_screeninfo
|
||||||
printf("Variable screen info:\n");
|
printf("Variable screen info:\n");
|
||||||
printf("\txres = %u\n", scr_var->xres);
|
printf("\txres = %u\n", scr_var->xres);
|
||||||
printf("\tyres = %u\n", scr_var->yres);
|
printf("\tyres = %u\n", scr_var->yres);
|
||||||
printf("\txres_virtual = %u\n", scr_var->xres_virtual);
|
printf("\txres_virtual = %u\n", scr_var->xres_virtual);
|
||||||
printf("\tyres_virtual = %u\n", scr_var->yres_virtual);
|
printf("\tyres_virtual = %u\n", scr_var->yres_virtual);
|
||||||
printf("\txoffset = %u\n", scr_var->xoffset);
|
printf("\txoffset = %u\n", scr_var->xoffset);
|
||||||
printf("\tyoffset = %u\n", scr_var->yoffset);
|
printf("\tyoffset = %u\n", scr_var->yoffset);
|
||||||
printf("\tbits_per_pixel = %u\n", scr_var->bits_per_pixel);
|
printf("\tbits_per_pixel = %u\n", scr_var->bits_per_pixel);
|
||||||
printf("\tgrayscale = %u\n", scr_var->grayscale);
|
printf("\tgrayscale = %u\n", scr_var->grayscale);
|
||||||
printf("\tred.offset = %u\n", scr_var->red.offset);
|
printf("\tred.offset = %u\n", scr_var->red.offset);
|
||||||
printf("\tred.length = %u\n", scr_var->red.length);
|
printf("\tred.length = %u\n", scr_var->red.length);
|
||||||
printf("\tred.msb_right = %u\n", scr_var->red.msb_right);
|
printf("\tred.msb_right = %u\n", scr_var->red.msb_right);
|
||||||
printf("\tgreen.offset = %u\n", scr_var->green.offset);
|
printf("\tgreen.offset = %u\n", scr_var->green.offset);
|
||||||
printf("\tgreen.length = %u\n", scr_var->green.length);
|
printf("\tgreen.length = %u\n", scr_var->green.length);
|
||||||
printf("\tgreen.msb_right = %u\n", scr_var->green.msb_right);
|
printf("\tgreen.msb_right = %u\n", scr_var->green.msb_right);
|
||||||
printf("\tblue.offset = %u\n", scr_var->blue.offset);
|
printf("\tblue.offset = %u\n", scr_var->blue.offset);
|
||||||
printf("\tblue.length = %u\n", scr_var->blue.length);
|
printf("\tblue.length = %u\n", scr_var->blue.length);
|
||||||
printf("\tblue.msb_right = %u\n", scr_var->blue.msb_right);
|
printf("\tblue.msb_right = %u\n", scr_var->blue.msb_right);
|
||||||
printf("\ttransp.offset = %u\n", scr_var->transp.offset);
|
printf("\ttransp.offset = %u\n", scr_var->transp.offset);
|
||||||
printf("\ttransp.length = %u\n", scr_var->transp.length);
|
printf("\ttransp.length = %u\n", scr_var->transp.length);
|
||||||
printf("\ttransp.msb_right = %u\n", scr_var->transp.msb_right);
|
printf("\ttransp.msb_right = %u\n", scr_var->transp.msb_right);
|
||||||
printf("\tnonstd = %u\n", scr_var->nonstd);
|
printf("\tnonstd = %u\n", scr_var->nonstd);
|
||||||
printf("\tactivate = %u\n", scr_var->activate);
|
printf("\tactivate = %u\n", scr_var->activate);
|
||||||
printf("\theight = %u\n", scr_var->height);
|
printf("\theight = %u\n", scr_var->height);
|
||||||
printf("\twidth = %u\n", scr_var->width);
|
printf("\twidth = %u\n", scr_var->width);
|
||||||
printf("\taccel_flags = %u\n", scr_var->accel_flags);
|
printf("\taccel_flags = %u\n", scr_var->accel_flags);
|
||||||
printf("\tpixclock = %u\n", scr_var->pixclock);
|
printf("\tpixclock = %u\n", scr_var->pixclock);
|
||||||
printf("\tleft_margin = %u\n", scr_var->left_margin);
|
printf("\tleft_margin = %u\n", scr_var->left_margin);
|
||||||
printf("\tright_margin = %u\n", scr_var->right_margin);
|
printf("\tright_margin = %u\n", scr_var->right_margin);
|
||||||
printf("\tupper_margin = %u\n", scr_var->upper_margin);
|
printf("\tupper_margin = %u\n", scr_var->upper_margin);
|
||||||
printf("\tlower_margin = %u\n", scr_var->lower_margin);
|
printf("\tlower_margin = %u\n", scr_var->lower_margin);
|
||||||
printf("\thsync_len = %u\n", scr_var->hsync_len);
|
printf("\thsync_len = %u\n", scr_var->hsync_len);
|
||||||
printf("\tvsync_len = %u\n", scr_var->vsync_len);
|
printf("\tvsync_len = %u\n", scr_var->vsync_len);
|
||||||
printf("\tsync = %u\n", scr_var->sync);
|
printf("\tsync = %u\n", scr_var->sync);
|
||||||
printf("\tvmode = %u\n", scr_var->vmode);
|
printf("\tvmode = %u\n", scr_var->vmode);
|
||||||
printf("\trotate = %u\n", scr_var->rotate);
|
printf("\trotate = %u\n", scr_var->rotate);
|
||||||
printf("\tcolorspace = %u\n", scr_var->colorspace);
|
printf("\tcolorspace = %u\n", scr_var->colorspace);
|
||||||
printf("\treserved[0] = %u\n", scr_var->reserved[0]);
|
printf("\treserved[0] = %u\n", scr_var->reserved[0]);
|
||||||
printf("\treserved[1] = %u\n", scr_var->reserved[1]);
|
printf("\treserved[1] = %u\n", scr_var->reserved[1]);
|
||||||
printf("\treserved[2] = %u\n", scr_var->reserved[2]);
|
printf("\treserved[2] = %u\n", scr_var->reserved[2]);
|
||||||
printf("\treserved[3] = %u\n", scr_var->reserved[3]);
|
printf("\treserved[3] = %u\n", scr_var->reserved[3]);
|
||||||
}
|
}
|
||||||
|
|
||||||
void print_cmap(struct fb_cmap* scr_cmap)
|
void print_cmap(struct fb_cmap *scr_cmap)
|
||||||
{
|
{
|
||||||
// ref: https://elixir.bootlin.com/linux/latest/ident/fb_cmap
|
// ref: https://elixir.bootlin.com/linux/latest/ident/fb_cmap
|
||||||
printf("Colormap:\n");
|
printf("Colormap:\n");
|
||||||
printf("\tstart = %u\n", scr_cmap->start);
|
printf("\tstart = %u\n", scr_cmap->start);
|
||||||
printf("\tlen = %u\n", scr_cmap->len);
|
printf("\tlen = %u\n", scr_cmap->len);
|
||||||
printf("\tred = ");
|
printf("\tred = ");
|
||||||
for (int i = 0; i < scr_cmap->len; i++) {
|
for (int i = 0; i < scr_cmap->len; i++) {
|
||||||
if (i > 0 && i % 8 == 0) {
|
if (i > 0 && i % 8 == 0) {
|
||||||
printf("\n\t\t ");
|
printf("\n\t\t ");
|
||||||
}
|
}
|
||||||
printf("0x%04hX ", scr_cmap->red[i]);
|
printf("0x%04hX ", scr_cmap->red[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
printf("\tgreen = ");
|
printf("\tgreen = ");
|
||||||
for (int i = 0; i < scr_cmap->len; i++) {
|
for (int i = 0; i < scr_cmap->len; i++) {
|
||||||
if (i > 0 && i % 8 == 0) {
|
if (i > 0 && i % 8 == 0) {
|
||||||
printf("\n\t\t ");
|
printf("\n\t\t ");
|
||||||
}
|
}
|
||||||
printf("0x%04hX ", scr_cmap->green[i]);
|
printf("0x%04hX ", scr_cmap->green[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
printf("\tblue = ");
|
printf("\tblue = ");
|
||||||
for (int i = 0; i < scr_cmap->len; i++) {
|
for (int i = 0; i < scr_cmap->len; i++) {
|
||||||
if (i > 0 && i % 8 == 0) {
|
if (i > 0 && i % 8 == 0) {
|
||||||
printf("\n\t\t ");
|
printf("\n\t\t ");
|
||||||
}
|
}
|
||||||
printf("0x%04hX ", scr_cmap->blue[i]);
|
printf("0x%04hX ", scr_cmap->blue[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
printf("\ttransp = ");
|
printf("\ttransp = ");
|
||||||
for (int i = 0; i < scr_cmap->len; i++) {
|
for (int i = 0; i < scr_cmap->len; i++) {
|
||||||
if (i > 0 && i % 8 == 0) {
|
if (i > 0 && i % 8 == 0) {
|
||||||
printf("\n\t\t ");
|
printf("\n\t\t ");
|
||||||
}
|
}
|
||||||
printf("0x%04hX ", scr_cmap->transp[i]);
|
printf("0x%04hX ", scr_cmap->transp[i]);
|
||||||
}
|
}
|
||||||
printf("\n");
|
printf("\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
const char *fb_device;
|
const char *fb_device;
|
||||||
struct fb_fix_screeninfo scr_fix;
|
struct fb_fix_screeninfo scr_fix;
|
||||||
struct fb_var_screeninfo scr_var;
|
struct fb_var_screeninfo scr_var;
|
||||||
struct fb_cmap scr_cmap;
|
struct fb_cmap scr_cmap;
|
||||||
int fb_fd;
|
int fb_fd;
|
||||||
|
|
||||||
// parse command line options
|
// parse command line options
|
||||||
fb_device = "/dev/fb0";
|
fb_device = "/dev/fb0";
|
||||||
bool show_info = false;
|
bool show_info = false;
|
||||||
bool show_cmap = false;
|
bool show_cmap = false;
|
||||||
int cmap_len;
|
int cmap_len;
|
||||||
bool pan_display = false;
|
bool pan_display = false;
|
||||||
bool set_fbmode = false;
|
bool set_fbmode = false;
|
||||||
int fbmode;
|
int fbmode;
|
||||||
|
|
||||||
if (argc < 2)
|
if (argc < 2) {
|
||||||
{
|
usage(argv[0]);
|
||||||
usage(argv[0]);
|
exit(1);
|
||||||
exit(1);
|
}
|
||||||
}
|
int opt;
|
||||||
int opt;
|
while ((opt = getopt(argc, argv, "d:ic:pm:h")) != -1) {
|
||||||
while ((opt = getopt(argc, argv, "d:ic:pm:h")) != -1)
|
switch (opt) {
|
||||||
{
|
case 'd':
|
||||||
switch (opt)
|
fb_device = optarg;
|
||||||
{
|
break;
|
||||||
case 'd':
|
case 'i':
|
||||||
fb_device = optarg;
|
show_info = true;
|
||||||
break;
|
break;
|
||||||
case 'i':
|
case 'c':
|
||||||
show_info = true;
|
show_cmap = true;
|
||||||
break;
|
cmap_len = atoi(optarg);
|
||||||
case 'c':
|
break;
|
||||||
show_cmap = true;
|
case 'p':
|
||||||
cmap_len = atoi(optarg);
|
pan_display = true;
|
||||||
break;
|
break;
|
||||||
case 'p':
|
case 'm':
|
||||||
pan_display = true;
|
set_fbmode = true;
|
||||||
break;
|
fbmode = atoi(optarg);
|
||||||
case 'm':
|
break;
|
||||||
set_fbmode = true;
|
case 'h':
|
||||||
fbmode = atoi(optarg);
|
default:
|
||||||
break;
|
usage(argv[0]);
|
||||||
case 'h':
|
exit(1);
|
||||||
default:
|
}
|
||||||
usage(argv[0]);
|
}
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// open the framebuffer device
|
// open the framebuffer device
|
||||||
fb_fd = open(fb_device, O_RDWR);
|
fb_fd = open(fb_device, O_RDWR);
|
||||||
if (fb_fd < 0)
|
if (fb_fd < 0) {
|
||||||
{
|
printf("Unable to open %s.\n", fb_device);
|
||||||
printf("Unable to open %s.\n", fb_device);
|
return 1;
|
||||||
return 1;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// call ioctl. retrieve fixed screen info
|
// call ioctl. retrieve fixed screen info
|
||||||
if (ioctl(fb_fd, FBIOGET_FSCREENINFO, &scr_fix) < 0)
|
if (ioctl(fb_fd, FBIOGET_FSCREENINFO, &scr_fix) < 0) {
|
||||||
{
|
printf("Unable to retrieve fixed screen info: %s\n",
|
||||||
printf("Unable to retrieve fixed screen info: %s\n",
|
strerror(errno));
|
||||||
strerror(errno));
|
close(fb_fd);
|
||||||
close(fb_fd);
|
return 1;
|
||||||
return 1;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// print all the fixed screen info values
|
// print all the fixed screen info values
|
||||||
if (show_info)
|
if (show_info)
|
||||||
print_fix_screeninfo(&scr_fix);
|
print_fix_screeninfo(&scr_fix);
|
||||||
|
|
||||||
// call ioctl. retrieve variable screen info
|
// call ioctl. retrieve variable screen info
|
||||||
if (ioctl(fb_fd, FBIOGET_VSCREENINFO, &scr_var) < 0)
|
if (ioctl(fb_fd, FBIOGET_VSCREENINFO, &scr_var) < 0) {
|
||||||
{
|
printf("Unable to retrieve variable screen info: %s\n",
|
||||||
printf("Unable to retrieve variable screen info: %s\n",
|
strerror(errno));
|
||||||
strerror(errno));
|
close(fb_fd);
|
||||||
close(fb_fd);
|
return 1;
|
||||||
return 1;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// print all the variable screen info values
|
// print all the variable screen info values
|
||||||
if (show_info)
|
if (show_info)
|
||||||
print_var_screeninfo(&scr_var);
|
print_var_screeninfo(&scr_var);
|
||||||
|
|
||||||
// call ioctl. retrieve colormap
|
// call ioctl. retrieve colormap
|
||||||
if (show_cmap) {
|
if (show_cmap) {
|
||||||
scr_cmap.start = 0;
|
scr_cmap.start = 0;
|
||||||
scr_cmap.len = cmap_len;
|
scr_cmap.len = cmap_len;
|
||||||
scr_cmap.red = calloc(256, sizeof(unsigned short));
|
scr_cmap.red = calloc(256, sizeof(unsigned short));
|
||||||
scr_cmap.green = calloc(256, sizeof(unsigned short));
|
scr_cmap.green = calloc(256, sizeof(unsigned short));
|
||||||
scr_cmap.blue = calloc(256, sizeof(unsigned short));
|
scr_cmap.blue = calloc(256, sizeof(unsigned short));
|
||||||
scr_cmap.transp = calloc(256, sizeof(unsigned short));
|
scr_cmap.transp = calloc(256, sizeof(unsigned short));
|
||||||
if (ioctl(fb_fd, FBIOGETCMAP, &scr_cmap) < 0)
|
if (ioctl(fb_fd, FBIOGETCMAP, &scr_cmap) < 0) {
|
||||||
{
|
printf("Unable to retrieve cmap info: %s\n",
|
||||||
printf("Unable to retrieve cmap info: %s\n",
|
strerror(errno));
|
||||||
strerror(errno));
|
free(scr_cmap.red);
|
||||||
free(scr_cmap.red);
|
free(scr_cmap.green);
|
||||||
free(scr_cmap.green);
|
free(scr_cmap.blue);
|
||||||
free(scr_cmap.blue);
|
free(scr_cmap.transp);
|
||||||
free(scr_cmap.transp);
|
close(fb_fd);
|
||||||
close(fb_fd);
|
return 1;
|
||||||
return 1;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// print all the cmap values
|
// print all the cmap values
|
||||||
print_cmap(&scr_cmap);
|
print_cmap(&scr_cmap);
|
||||||
|
|
||||||
free(scr_cmap.red);
|
free(scr_cmap.red);
|
||||||
free(scr_cmap.green);
|
free(scr_cmap.green);
|
||||||
free(scr_cmap.blue);
|
free(scr_cmap.blue);
|
||||||
free(scr_cmap.transp);
|
free(scr_cmap.transp);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pan_display)
|
if (pan_display) {
|
||||||
{
|
// call ioctl. pan the display
|
||||||
// call ioctl. pan the display
|
if (ioctl(fb_fd, FBIOPAN_DISPLAY, &scr_var) < 0) {
|
||||||
if (ioctl(fb_fd, FBIOPAN_DISPLAY, &scr_var) < 0)
|
printf("Unable to pan the display: %s\n",
|
||||||
{
|
strerror(errno));
|
||||||
printf("Unable to pan the display: %s\n",
|
close(fb_fd);
|
||||||
strerror(errno));
|
return 1;
|
||||||
close(fb_fd);
|
}
|
||||||
return 1;
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (set_fbmode) {
|
if (set_fbmode) {
|
||||||
if (ioctl(fb_fd, FBIOBLANK, (void *)fbmode) < 0)
|
if (ioctl(fb_fd, FBIOBLANK, (void *)fbmode) < 0) {
|
||||||
{
|
printf("Unable to set fb mode: %s\n",
|
||||||
printf("Unable to set fb mode: %s\n",
|
strerror(errno));
|
||||||
strerror(errno));
|
close(fb_fd);
|
||||||
close(fb_fd);
|
return 1;
|
||||||
return 1;
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
// close the framebuffer device
|
// close the framebuffer device
|
||||||
close(fb_fd);
|
close(fb_fd);
|
||||||
}
|
}
|
||||||
|
@ -27,5 +27,5 @@ package() {
|
|||||||
install -D -m755 "$srcdir"/hello-world \
|
install -D -m755 "$srcdir"/hello-world \
|
||||||
"$pkgdir"/usr/bin/hello-world
|
"$pkgdir"/usr/bin/hello-world
|
||||||
}
|
}
|
||||||
sha512sums="d5ad91600d9be3e53be4cb6e5846b0757786c947b2c0d10f612f67262fc91c148e8d73621623e259ca9dcd5e2c8ec7069cebec44165e203ea8c0133669d3382d main.c
|
sha512sums="62385af6a68cd4e0c03b15992bb9f1d20b8d6c8a33724ca2d28629a139e95016d0502257f8a3a8be53eef30e11b3e372a2469cb1989dbd387ebea4464a9273ee main.c
|
||||||
80c32948d3254f5e4f9084d73754824e7d7d7d117770b041a1a13baf056773de265153fe518cc3e735db55b638411aa6fbd0e17b5b674dfc89e69a9391fbd3bb Makefile"
|
80c32948d3254f5e4f9084d73754824e7d7d7d117770b041a1a13baf056773de265153fe518cc3e735db55b638411aa6fbd0e17b5b674dfc89e69a9391fbd3bb Makefile"
|
||||||
|
@ -2,6 +2,6 @@
|
|||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
printf("hello, world!\n");
|
printf("hello, world!\n");
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -36,7 +36,7 @@ package() {
|
|||||||
}
|
}
|
||||||
sha512sums="cd3c4a4bb246d8e2480a9968d3519373ab55126a5b77e975ce53333ed39349194f1afb0dea472d62bdb0ffef1ac93bbadaf3de6362db47ef34c922a1e65c95db build_zip.sh
|
sha512sums="cd3c4a4bb246d8e2480a9968d3519373ab55126a5b77e975ce53333ed39349194f1afb0dea472d62bdb0ffef1ac93bbadaf3de6362db47ef34c922a1e65c95db build_zip.sh
|
||||||
bb152e86ce420761dd2dca660552131610bb8f39cb7e30c75689aacc7cccddce17a90c998097f1b63b3d68a20f9c2c4823d8d591de156dff827381fe436f3b9d update-binary
|
bb152e86ce420761dd2dca660552131610bb8f39cb7e30c75689aacc7cccddce17a90c998097f1b63b3d68a20f9c2c4823d8d591de156dff827381fe436f3b9d update-binary
|
||||||
38c21dc80aa2530fc06c2960c1318e07d068d403af02133f09ba227106a9b23fb77c3bed904e6135b048846f2733bd5d043235e5ab04598ed9c8fa45cbb15586 disable-warning.c
|
3e6388602665367990bdf4c068268160c26a80dda7fa43380755f36f1ca8751f4ec8a584a4cce3b37f41d405a992716c4280077d062e186b4027d6b74db84b3c disable-warning.c
|
||||||
2400d18734d08b3d2f5ec2fe4e802cdcacddea851644b47505eff1aac47302699c171b880bca55dd1704cc9cef9ac26082ac89cee802b6bf57ff8cf649373328 pmos_chroot
|
2400d18734d08b3d2f5ec2fe4e802cdcacddea851644b47505eff1aac47302699c171b880bca55dd1704cc9cef9ac26082ac89cee802b6bf57ff8cf649373328 pmos_chroot
|
||||||
ef6377f6c062b9a86eb9dfb2aa2c0049fda20f24ec75865a682a50e4655710a18bd7a470deab527e1dd4c273f9ea6a003ec03fc5748d44b1c4fbfc91baa9e358 pmos_install
|
ef6377f6c062b9a86eb9dfb2aa2c0049fda20f24ec75865a682a50e4655710a18bd7a470deab527e1dd4c273f9ea6a003ec03fc5748d44b1c4fbfc91baa9e358 pmos_install
|
||||||
1b19d507a9142e537d052037a0c0768f064ad9131ac8019b234178dc15c0590dbc549ccf553b7a7d55e977df269d4dc0567b520c890738cb80184fc8235222aa pmos_install_functions
|
1b19d507a9142e537d052037a0c0768f064ad9131ac8019b234178dc15c0590dbc549ccf553b7a7d55e977df269d4dc0567b520c890738cb80184fc8235222aa pmos_install_functions
|
||||||
|
@ -17,61 +17,61 @@
|
|||||||
* along with postmarketos-android-recovery-installer. If not, see <http:www.gnu.org/licenses/>.
|
* along with postmarketos-android-recovery-installer. If not, see <http:www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#include <dirent.h>
|
||||||
|
#include <fcntl.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <sys/types.h>
|
|
||||||
#include <sys/stat.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <fcntl.h>
|
#include <sys/stat.h>
|
||||||
#include <dirent.h>
|
#include <sys/types.h>
|
||||||
|
#include <unistd.h>
|
||||||
|
|
||||||
void close_FDs()
|
void close_FDs()
|
||||||
{
|
{
|
||||||
unsigned int fd;
|
unsigned int fd;
|
||||||
struct dirent* ep;
|
struct dirent *ep;
|
||||||
DIR* dp = opendir("/proc/self/fd");
|
DIR *dp = opendir("/proc/self/fd");
|
||||||
if (dp != NULL) {
|
if (dp != NULL) {
|
||||||
// first two entries are . and ..
|
// first two entries are . and ..
|
||||||
readdir(dp);
|
readdir(dp);
|
||||||
readdir(dp);
|
readdir(dp);
|
||||||
|
|
||||||
while (ep = readdir(dp))
|
while (ep = readdir(dp))
|
||||||
if (sscanf(ep->d_name, "%u", &fd) != EOF)
|
if (sscanf(ep->d_name, "%u", &fd) != EOF)
|
||||||
close(fd);
|
close(fd);
|
||||||
closedir(dp);
|
closedir(dp);
|
||||||
} else {
|
} else {
|
||||||
// try to close all file descriptors by brute-force
|
// try to close all file descriptors by brute-force
|
||||||
// in case the list of open FDs could not be read
|
// in case the list of open FDs could not be read
|
||||||
// from the procfs
|
// from the procfs
|
||||||
for (fd = 256; fd >= 0; fd--)
|
for (fd = 256; fd >= 0; fd--)
|
||||||
close(fd);
|
close(fd);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Detach the program from the installation script
|
// Detach the program from the installation script
|
||||||
void daemonize()
|
void daemonize()
|
||||||
{
|
{
|
||||||
pid_t pid;
|
pid_t pid;
|
||||||
|
|
||||||
pid = fork();
|
pid = fork();
|
||||||
if (pid < 0)
|
if (pid < 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
if (pid > 0)
|
if (pid > 0)
|
||||||
exit(0);
|
exit(0);
|
||||||
|
|
||||||
if (setsid() < 0)
|
if (setsid() < 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
|
|
||||||
pid = fork();
|
pid = fork();
|
||||||
if (pid < 0)
|
if (pid < 0)
|
||||||
exit(1);
|
exit(1);
|
||||||
if (pid > 0)
|
if (pid > 0)
|
||||||
exit(0);
|
exit(0);
|
||||||
|
|
||||||
umask(0);
|
umask(0);
|
||||||
chdir("/");
|
chdir("/");
|
||||||
close_FDs();
|
close_FDs();
|
||||||
}
|
}
|
||||||
|
|
||||||
// Workaround to disable No OS warning in TWRP
|
// Workaround to disable No OS warning in TWRP
|
||||||
@ -88,36 +88,36 @@ void daemonize()
|
|||||||
// exited.
|
// exited.
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
daemonize();
|
daemonize();
|
||||||
|
|
||||||
int orsin, orsout;
|
int orsin, orsout;
|
||||||
|
|
||||||
char command[1024];
|
char command[1024];
|
||||||
char result[512];
|
char result[512];
|
||||||
|
|
||||||
char* commands[] = {"set tw_backup_system_size 999",
|
char *commands[] = { "set tw_backup_system_size 999",
|
||||||
"set tw_app_prompt 0"};
|
"set tw_app_prompt 0" };
|
||||||
|
|
||||||
sleep(4);
|
sleep(4);
|
||||||
|
|
||||||
int i;
|
int i;
|
||||||
for (i = 0; i < sizeof(commands)/sizeof(char*); i++) {
|
for (i = 0; i < sizeof(commands) / sizeof(char *); i++) {
|
||||||
if ((orsin = open("/sbin/orsin", O_WRONLY)) == -1)
|
if ((orsin = open("/sbin/orsin", O_WRONLY)) == -1)
|
||||||
return 1;
|
return 1;
|
||||||
strcpy(command, commands[i]);
|
strcpy(command, commands[i]);
|
||||||
write(orsin, command, sizeof(command));
|
write(orsin, command, sizeof(command));
|
||||||
close(orsin);
|
close(orsin);
|
||||||
|
|
||||||
// Have to read FIFO file, because it blocks
|
// Have to read FIFO file, because it blocks
|
||||||
// the thread processing the command
|
// the thread processing the command
|
||||||
// (see man 3 mkfifo)
|
// (see man 3 mkfifo)
|
||||||
if ((orsout = open("/sbin/orsout", O_RDONLY)) == -1)
|
if ((orsout = open("/sbin/orsout", O_RDONLY)) == -1)
|
||||||
return 1;
|
return 1;
|
||||||
read(orsout, result, sizeof(result));
|
read(orsout, result, sizeof(result));
|
||||||
close(orsout);
|
close(orsout);
|
||||||
|
|
||||||
sleep(3);
|
sleep(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -20,5 +20,5 @@ package() {
|
|||||||
install -D -m755 "$srcdir"/postmarketos-demos \
|
install -D -m755 "$srcdir"/postmarketos-demos \
|
||||||
"$pkgdir"/usr/bin/postmarketos-demos
|
"$pkgdir"/usr/bin/postmarketos-demos
|
||||||
}
|
}
|
||||||
sha512sums="48db2907ea609bcdafd321aa8659a387ad6325641e01fd83d91be5d320eb6202ab628b73d914658333396e7751e1e283aed413db7e91cce2d782993ef38a7e05 main.c
|
sha512sums="804bbd4e939bd49a153919a728ee17cf69e98e5d679f106054edf298d775849f8efa4716814ee4b84eaa6bcc2c38d16c2362922978cdd214290dd4968ce645bc main.c
|
||||||
83d8a95e9e1e95dffa8661e547444e83e72e572dcd0c637376f678bbd20a351c4b971a315311edefeb58a4cca14fd3e586fb581a262b2d217e25092459539b98 Makefile"
|
83d8a95e9e1e95dffa8661e547444e83e72e572dcd0c637376f678bbd20a351c4b971a315311edefeb58a4cca14fd3e586fb581a262b2d217e25092459539b98 Makefile"
|
||||||
|
@ -3,56 +3,55 @@
|
|||||||
|
|
||||||
static void onclick(GtkWidget *widget, gpointer command)
|
static void onclick(GtkWidget *widget, gpointer command)
|
||||||
{
|
{
|
||||||
system((const char*)command);
|
system((const char *)command);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void activate(GtkApplication *app, gpointer user_data)
|
static void activate(GtkApplication *app, gpointer user_data)
|
||||||
{
|
{
|
||||||
GtkWidget *window = gtk_application_window_new(app);
|
GtkWidget *window = gtk_application_window_new(app);
|
||||||
gtk_window_set_title(GTK_WINDOW (window), "postmarketOS demos");
|
gtk_window_set_title(GTK_WINDOW(window), "postmarketOS demos");
|
||||||
|
|
||||||
GtkWidget *button_box = gtk_button_box_new(
|
GtkWidget *button_box = gtk_button_box_new(
|
||||||
GTK_ORIENTATION_VERTICAL);
|
GTK_ORIENTATION_VERTICAL);
|
||||||
gtk_container_add(GTK_CONTAINER (window), button_box);
|
gtk_container_add(GTK_CONTAINER(window), button_box);
|
||||||
|
|
||||||
const char *programs[] = {
|
const char *programs[] = {
|
||||||
"GTK3 Demo",
|
"GTK3 Demo",
|
||||||
"gtk3-demo &",
|
"gtk3-demo &",
|
||||||
"Firefox (XWayland, needs to be installed)",
|
"Firefox (XWayland, needs to be installed)",
|
||||||
"firefox &",
|
"firefox &",
|
||||||
"weston-presentation-shm (Animation)",
|
"weston-presentation-shm (Animation)",
|
||||||
"weston-presentation-shm &",
|
"weston-presentation-shm &",
|
||||||
"weston-simple-damage (Animation)",
|
"weston-simple-damage (Animation)",
|
||||||
"weston-simple-damage &",
|
"weston-simple-damage &",
|
||||||
"weston-smoke (Touch)",
|
"weston-smoke (Touch)",
|
||||||
"weston-smoke &",
|
"weston-smoke &",
|
||||||
"weston-editor (Touch)",
|
"weston-editor (Touch)",
|
||||||
"weston-editor &",
|
"weston-editor &",
|
||||||
"htop (Terminal)",
|
"htop (Terminal)",
|
||||||
"weston-terminal -f --shell=/usr/bin/htop &",
|
"weston-terminal -f --shell=/usr/bin/htop &",
|
||||||
"Restart Weston",
|
"Restart Weston",
|
||||||
"killall weston &",
|
"killall weston &",
|
||||||
};
|
};
|
||||||
|
|
||||||
for(int i=0;i<(sizeof(programs) / sizeof(const char*));i+=2)
|
for (int i = 0; i < (sizeof(programs) / sizeof(const char *)); i += 2) {
|
||||||
{
|
|
||||||
const char *title = programs[i];
|
const char *title = programs[i];
|
||||||
const char *command = programs[i+1];
|
const char *command = programs[i + 1];
|
||||||
|
|
||||||
GtkWidget *button = gtk_button_new_with_label(title);
|
GtkWidget *button = gtk_button_new_with_label(title);
|
||||||
gtk_widget_set_size_request(button, 200, 70);
|
gtk_widget_set_size_request(button, 200, 70);
|
||||||
g_signal_connect(button, "clicked", G_CALLBACK (onclick),
|
g_signal_connect(button, "clicked", G_CALLBACK(onclick),
|
||||||
(void*)command);
|
(void *)command);
|
||||||
gtk_container_add(GTK_CONTAINER(button_box), button);
|
gtk_container_add(GTK_CONTAINER(button_box), button);
|
||||||
}
|
}
|
||||||
gtk_widget_show_all (window);
|
gtk_widget_show_all(window);
|
||||||
}
|
}
|
||||||
|
|
||||||
int main (int argc, char **argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
GtkApplication *app = gtk_application_new("org.postmarketos.demos",
|
GtkApplication *app = gtk_application_new("org.postmarketos.demos",
|
||||||
G_APPLICATION_FLAGS_NONE);
|
G_APPLICATION_FLAGS_NONE);
|
||||||
g_signal_connect (app, "activate", G_CALLBACK(activate), NULL);
|
g_signal_connect(app, "activate", G_CALLBACK(activate), NULL);
|
||||||
int status = g_application_run(G_APPLICATION(app), argc, argv);
|
int status = g_application_run(G_APPLICATION(app), argc, argv);
|
||||||
g_object_unref(app);
|
g_object_unref(app);
|
||||||
return status;
|
return status;
|
||||||
|
@ -22,4 +22,4 @@ package() {
|
|||||||
"${pkgdir}/usr/sbin/reboot-mode"
|
"${pkgdir}/usr/sbin/reboot-mode"
|
||||||
}
|
}
|
||||||
|
|
||||||
sha512sums="569b6b1cf595e208b8c5731ea8d4334cd5458cbc2a63d5756014f55f04dd89a4b67ec0d0d01d7a1cd935ae13d44e62e3ea6765f626736bc3dc2029b890c20070 reboot-mode.c"
|
sha512sums="37d282608f30b1b8fa4f7501a8afcaa81902c9dfaee0c4c92ab05028e3a99a69c601dc7fce6ab06582db044b6fd0f5bffabe9d6064af9e670266978d66fe2515 reboot-mode.c"
|
||||||
|
@ -4,14 +4,14 @@
|
|||||||
*
|
*
|
||||||
* Copyright (C) 2019 Daniele Debernardi <drebrez@gmail.com>
|
* Copyright (C) 2019 Daniele Debernardi <drebrez@gmail.com>
|
||||||
*/
|
*/
|
||||||
|
#include <linux/reboot.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <sys/syscall.h>
|
#include <sys/syscall.h>
|
||||||
#include <linux/reboot.h>
|
#include <unistd.h>
|
||||||
|
|
||||||
void usage(char* appname)
|
void usage(char *appname)
|
||||||
{
|
{
|
||||||
printf("Usage: %s [-h] MODE\n\n", appname);
|
printf("Usage: %s [-h] MODE\n\n", appname);
|
||||||
printf("Reboot the device to the MODE specified (e.g. recovery, bootloader)\n\n");
|
printf("Reboot the device to the MODE specified (e.g. recovery, bootloader)\n\n");
|
||||||
@ -20,19 +20,16 @@ void usage(char* appname)
|
|||||||
printf(" -h Show this help message and exit\n");
|
printf(" -h Show this help message and exit\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char** argv)
|
int main(int argc, char **argv)
|
||||||
{
|
{
|
||||||
if (argc != 2)
|
if (argc != 2) {
|
||||||
{
|
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
int opt;
|
int opt;
|
||||||
while ((opt = getopt(argc, argv, "h")) != -1)
|
while ((opt = getopt(argc, argv, "h")) != -1) {
|
||||||
{
|
switch (opt) {
|
||||||
switch (opt)
|
|
||||||
{
|
|
||||||
case 'h':
|
case 'h':
|
||||||
default:
|
default:
|
||||||
usage(argv[0]);
|
usage(argv[0]);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user