2c069812a2
OBS-URL: https://build.opensuse.org/package/show/filesystems/e2fsprogs?expand=0&rev=30f2adef6493c3967236e4a1a28d333e
187 lines
4.4 KiB
Diff
187 lines
4.4 KiB
Diff
Index: e2fsck/splash.c
|
|
===================================================================
|
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
|
+++ e2fsck/splash.c 2010-04-19 13:46:32.808011099 +0200
|
|
@@ -0,0 +1,100 @@
|
|
+/*
|
|
+ * add support for switching the splash screen on boot
|
|
+ */
|
|
+#include <stdio.h>
|
|
+#include <string.h>
|
|
+#include <sys/types.h>
|
|
+#include <sys/stat.h>
|
|
+#include <fcntl.h>
|
|
+#include <unistd.h>
|
|
+#include <errno.h>
|
|
+#include "splash.h"
|
|
+
|
|
+static int verbose = 0;
|
|
+
|
|
+/* nop implementation
|
|
+ */
|
|
+static void nop(void)
|
|
+{
|
|
+}
|
|
+
|
|
+static struct splash_ops nop_ops = {
|
|
+ .splash_on = nop,
|
|
+ .splash_off = nop
|
|
+};
|
|
+
|
|
+/*
|
|
+ * bootsplash implementation
|
|
+ */
|
|
+#define BOOTSPLASH_CTL "/proc/splash"
|
|
+
|
|
+static int bootsplash_exists(void)
|
|
+{
|
|
+ struct stat sb;
|
|
+
|
|
+ if (stat(BOOTSPLASH_CTL, &sb) == -1)
|
|
+ return 0;
|
|
+
|
|
+ if (S_ISREG(sb.st_mode))
|
|
+ return 1;
|
|
+
|
|
+ return 0;
|
|
+}
|
|
+
|
|
+/* write msg to splash control */
|
|
+static void bootsplash_msg(const char *msg, size_t size)
|
|
+{
|
|
+ int fd;
|
|
+ size_t written;
|
|
+
|
|
+ fd = open(BOOTSPLASH_CTL, O_WRONLY);
|
|
+ if (fd == -1) {
|
|
+ if (verbose)
|
|
+ printf("cannot open %s\n", BOOTSPLASH_CTL);
|
|
+ return;
|
|
+ }
|
|
+
|
|
+ written = write(fd, msg, size);
|
|
+ if (written != size) {
|
|
+ if (verbose)
|
|
+ printf("size = %i, written = %i\n", size, written);
|
|
+ }
|
|
+
|
|
+ close(fd);
|
|
+}
|
|
+
|
|
+static void bootsplash_on(void)
|
|
+{
|
|
+ if (verbose)
|
|
+ printf("setting bootsplash silent\n");
|
|
+ bootsplash_msg("silent\n", 7);
|
|
+}
|
|
+
|
|
+static void bootsplash_off(void)
|
|
+{
|
|
+ if (verbose)
|
|
+ printf("setting bootsplash verbose\n");
|
|
+ bootsplash_msg("verbose\n", 8);
|
|
+}
|
|
+
|
|
+static struct splash_ops bootsplash_ops = {
|
|
+ .splash_on = bootsplash_on,
|
|
+ .splash_off = bootsplash_off
|
|
+};
|
|
+
|
|
+/*
|
|
+ * Initialisation
|
|
+ */
|
|
+void splash_init(struct splash_ops **ops)
|
|
+{
|
|
+ if (bootsplash_exists())
|
|
+ *ops = &bootsplash_ops;
|
|
+ else
|
|
+ *ops = &nop_ops;
|
|
+}
|
|
+
|
|
+void splash_set_verbose(void)
|
|
+{
|
|
+ verbose = 1;
|
|
+}
|
|
+
|
|
Index: e2fsck/splash.h
|
|
===================================================================
|
|
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
|
|
+++ e2fsck/splash.h 2010-04-19 13:46:32.824003188 +0200
|
|
@@ -0,0 +1,13 @@
|
|
+#ifndef _SPLASH_H
|
|
+#define _SPLASH_H
|
|
+
|
|
+struct splash_ops {
|
|
+ void (*splash_on)(void);
|
|
+ void (*splash_off)(void);
|
|
+};
|
|
+
|
|
+void splash_init(struct splash_ops **ops);
|
|
+void splash_set_verbose(void);
|
|
+
|
|
+#endif /* _SPLASH_H */
|
|
+
|
|
Index: e2fsck/Makefile.in
|
|
===================================================================
|
|
--- e2fsck/Makefile.in.orig 2010-02-23 05:40:50.000000000 +0100
|
|
+++ e2fsck/Makefile.in 2010-04-19 13:46:32.863915437 +0200
|
|
@@ -64,7 +64,7 @@ COMPILE_ET=$(top_builddir)/lib/et/compil
|
|
OBJS= crc32.o dict.o unix.o e2fsck.o super.o pass1.o pass1b.o pass2.o \
|
|
pass3.o pass4.o pass5.o journal.o badblocks.o util.o dirinfo.o \
|
|
dx_dirinfo.o ehandler.o problem.o message.o recovery.o region.o \
|
|
- revoke.o ea_refcount.o rehash.o profile.o prof_err.o $(MTRACE_OBJ)
|
|
+ revoke.o ea_refcount.o rehash.o profile.o prof_err.o splash.o $(MTRACE_OBJ)
|
|
|
|
PROFILED_OBJS= profiled/dict.o profiled/unix.o profiled/e2fsck.o \
|
|
profiled/super.o profiled/pass1.o profiled/pass1b.o \
|
|
@@ -102,6 +102,7 @@ SRCS= $(srcdir)/e2fsck.c \
|
|
$(srcdir)/rehash.c \
|
|
$(srcdir)/region.c \
|
|
$(srcdir)/profile.c \
|
|
+ $(srcdir)/splash.c \
|
|
prof_err.c \
|
|
$(MTRACE_SRC)
|
|
|
|
@@ -452,3 +453,5 @@ region.o: $(srcdir)/region.c $(srcdir)/e
|
|
profile.o: $(srcdir)/profile.c $(top_srcdir)/lib/et/com_err.h \
|
|
$(srcdir)/profile.h prof_err.h
|
|
prof_err.o: prof_err.c
|
|
+splash.o: splash.c splash.h
|
|
+
|
|
Index: e2fsck/unix.c
|
|
===================================================================
|
|
--- e2fsck/unix.c.orig 2010-03-15 05:14:12.000000000 +0100
|
|
+++ e2fsck/unix.c 2010-04-19 13:46:32.899004459 +0200
|
|
@@ -53,6 +53,7 @@ extern int optind;
|
|
#include "e2p/e2p.h"
|
|
#include "e2fsck.h"
|
|
#include "problem.h"
|
|
+#include "splash.h"
|
|
#include "../version.h"
|
|
|
|
/* Command line options */
|
|
@@ -956,6 +957,7 @@ int main (int argc, char *argv[])
|
|
int sysval, sys_page_size = 4096;
|
|
__u32 features[3];
|
|
char *cp;
|
|
+ struct splash_ops *sops;
|
|
|
|
clear_problem_context(&pctx);
|
|
#ifdef MTRACE
|
|
@@ -985,6 +987,7 @@ int main (int argc, char *argv[])
|
|
exit(FSCK_ERROR);
|
|
}
|
|
reserve_stdio_fds();
|
|
+ splash_init(&sops);
|
|
|
|
init_resource_track(&ctx->global_rtrack, NULL);
|
|
if (!(ctx->options & E2F_OPT_PREEN) || show_version_only)
|
|
@@ -1304,6 +1307,7 @@ print_unsupp_features:
|
|
fatal_error(ctx, 0);
|
|
check_if_skip(ctx);
|
|
check_resize_inode(ctx);
|
|
+ sops->splash_off();
|
|
if (bad_blocks_file)
|
|
read_bad_blocks_file(ctx, bad_blocks_file, replace_bad_blocks);
|
|
else if (cflag)
|