我在帖子里看到一个使用Psplash工具的,
但是感觉这个的实现都是在系统启动完后,
类似于跑应用程序一样,感觉这样意义不大。
离线
加在 u-boot ? kernel ?
离线
加在 u-boot ? kernel ?
我在想是加在内核部分,您有什么好的方法吗,我看网上面有一个直接编译一个boot_process.c的文件到内核里面实现,但是我试了一下,发现不行,不知道是方法不行,还是我操作有误。
离线
我在想是加在内核部分,您有什么好的方法吗,我看网上面有一个直接编译一个boot_process.c的文件到内核里面实现,但是我试了一下,发现不行,不知道是方法不行,还是我操作有误。
求 boot_process.c 修改链接
离线
求 boot_process.c 修改链接
离线
好像并没有 boot_process.c 源码?
离线
好像并没有 boot_process.c 源码?
本站下载: boot_process.rar
#include <linux/init.h>
#include <linux/workqueue.h>
#include <linux/fb.h>
#include <linux/slab.h>
#define CONFIG_DISPLAY_FB 0
#define CONFIG_BOOT_PROCESS
//#define CONFIG_BOOT_PROCESS_BLOCK
#define CONFIG_BOOT_PROCESS_BAR
#define CONFIG_PROCESS_DURATION 10
static struct delayed_work boot_process_work;
static u32 palette[5] = {200, 203, 206, 209, 212};
static void draw_box(int x, int y, int width, int height, int color_index)
{
	struct fb_info * fb;
	struct fb_image process;
	char * data;
	if (color_index >= sizeof(palette) / sizeof(u32)) {
		printk("color_index out of range!\n");
		return ;
	}
	data = kmalloc(width * height, GFP_KERNEL);
	memset(data, color_index, width * height);
	process.dx = x;
	process.dy = y;
	process.width = width;
	process.height= height;
	process.data = data;
	process.depth = 8;
	fb = registered_fb[CONFIG_DISPLAY_FB];
	fb->pseudo_palette = palette;
	fb->fbops->fb_imageblit(fb, &process);
	kfree(data);
}
#if (defined CONFIG_BOOT_PROCESS_BAR) && (defined CONFIG_BOOT_PROCESS)
#define PROCESS_BLOCK_NUM 300
static void process_worker(struct work_struct * work)
{
	static unsigned long timestamp = 0;
	static int process_width;
	static int process_height;
	static int block_num_adjust;
	static int block_width;
	static int process_x;
	static int process_y;
	static int step;
	if ( registered_fb[CONFIG_DISPLAY_FB] == NULL ) {
		printk("Boot process: fb dev not inited, boot process not start!\n");
		return ;
	}
	/* fisrt call process_worker, set timestamp as jiffies */
	if (timestamp == 0) {
		int screen_width;
		int screen_height;
		timestamp = jiffies;
		step = 0;
		screen_width = registered_fb[CONFIG_DISPLAY_FB]->var.xres;
		screen_height = registered_fb[CONFIG_DISPLAY_FB]->var.yres;
		/* draw process bar background */
		process_width = screen_width * 4 / 5;
		process_height = screen_height / 10;
		process_x = (screen_width - process_width) / 2;
		process_y = screen_height - process_height * 2;
		block_width = process_width / PROCESS_BLOCK_NUM;
		block_num_adjust = process_width / block_width;
//		draw_box(process_x, process_y, process_width, process_height, 0);
		draw_box(process_x, process_y, block_width, process_height, 0);
	} else {
		int i;
		int current_x;
		step++;
		for (i = 0 ; i < 4; i++) {
			current_x = process_x + block_width * ( step -i );
			if (current_x >= (process_x + process_width - 2 * block_width) || current_x < process_x) {
				continue;
			}
			draw_box(current_x, process_y, block_width, process_height, i + 1);
		}
	}
	if (jiffies - timestamp > CONFIG_PROCESS_DURATION * HZ) {
		draw_box(process_x, process_y, process_width, process_height, 4);
		printk("Boot process: boot process end!\n"); //modefy by fck zlgmcu
		return ;
	}
	schedule_delayed_work(&boot_process_work, CONFIG_PROCESS_DURATION * HZ /
			(block_num_adjust) );
}
#endif
#if (defined CONFIG_BOOT_PROCESS_BLOCK) && (defined CONFIG_BOOT_PROCESS)
static void process_worker(struct work_struct * work)
{
	static unsigned long timestamp = 0;
	static int start_x;
	static int start_y;
	static int count = 0;
	int screen_width;
	int screen_height;
	int width;
	int height;
	int span;
	int tmp;
	int i;
	if ( registered_fb[CONFIG_DISPLAY_FB] == NULL ) {
		printk("Boot process: fb dev not inited, boot process not start!\n");
		return ;
	}
	screen_width = registered_fb[CONFIG_DISPLAY_FB]->var.xres;
	screen_height = registered_fb[CONFIG_DISPLAY_FB]->var.yres;
	/* draw process bar background */
	tmp = screen_width * 4 / 5;
	height = screen_height / 10;
	width = height;
	start_x = (screen_width - tmp) / 2;
	start_y = screen_height - height * 2;
	span = (tmp - width) / 4;
	/* fisrt call process_worker, set timestamp as jiffies */
	timestamp = (timestamp == 0) ? jiffies : timestamp;
	if (jiffies - timestamp > CONFIG_PROCESS_DURATION * HZ) {
		for (i = 0; i < 5; i++) {
			draw_box(start_x + i * span, start_y, width, height, 4);
		}
		printk("Boot process: boot process end!\n");
		return ;
	}
	tmp = ++count;
	count = tmp % 5;
	for (i = 0; i < 5; i++) {
		if (count == i) {
			draw_box(start_x + i * span, start_y, width, height, 4);
		} else {
			draw_box(start_x + i * span, start_y, width, height, 0);
		}
	}
	schedule_delayed_work(&boot_process_work, HZ);
}
#endif
int boot_process_init(void)
{
#if defined CONFIG_BOOT_PROCESS
	INIT_DELAYED_WORK(&boot_process_work, process_worker);
	schedule_delayed_work(&boot_process_work, HZ);
	printk("Boot process: init\n");
#endif
	return 0;
}
fs_initcall(boot_process_init);离线
仍在纠结中.......
离线
仍在纠结中.......
源码你也有了,照着文章改,感觉问题不大。
离线
已经可以了,感谢大家
离线
已经可以了,感谢大家
分享一下噢
离线
分享一下噢
按照我上面的链接操作,源码分享在上面了!
离线
这个进度条不错噢, 以前一直纠结怎么实现Linux的进度条 ![]()
但是发现有一个需要修改的地方,
如果切换画面比较多的情况下, 进度条刷新有点bug, 他只刷后面的, 而不刷前面的,
这种情况下, 应该重画整个进度条比较好。
还有, 没有回读原来的显示缓冲区, 所以没有实现半透明效果。
离线
其实应该把boot和内核的加载启动时间尽量缩短(比如2秒内)之后用应用来画进度条。
离线
这个进度条不错噢, 以前一直纠结怎么实现Linux的进度条
但是发现有一个需要修改的地方,
如果切换画面比较多的情况下, 进度条刷新有点bug, 他只刷后面的, 而不刷前面的,
这种情况下, 应该重画整个进度条比较好。
还有, 没有回读原来的显示缓冲区, 所以没有实现半透明效果。
恩恩,您说的也对,但是一般情况下,进度条同时加个公司的log或着产品的log,进度条走完之后一般应该进入应用程序了,我加进度条主要就是让启动应用程序的那个间断时间不会显得很突兀。
您说的方面您有修改吗?
离线
其实应该把boot和内核的加载启动时间尽量缩短(比如2秒内)之后用应用来画进度条。
应用画进度条的话,现在好像有个工具psplash,这个可以实现进度条!
离线
这个进度条怎么把蓝色改成别的颜色, 改那个数字好像没有作用。
static u32 palette[5] = {200, 203, 206, 209, 212};
离线
这个进度条怎么把蓝色改成别的颜色, 改那个数字好像没有作用。
static u32 palette[5] = {200, 203, 206, 209, 212};
没错,就是改这里, 可能你改的值不对:
蓝 static u32 palette[5] = {0x0000FF, 0x0000FF, 0x0000FF, 0x0000FF, 0x0000FF};
绿 static u32 palette[5] = {0x00FF00, 0x00FF00, 0x00FF00, 0x00FF00, 0x00FF00};
红 static u32 palette[5] = {0xFF0000, 0xFF0000, 0xFF0000, 0xFF0000, 0xFF0000};
离线
请问linux驱动可以访问bootargs参数吗?我想传递几个参数给这个进度条驱动程序。
离线
请问linux驱动可以访问bootargs参数吗?我想传递几个参数给这个进度条驱动程序。
$ find . |grep cmdline |grep \\.h$
./block/partitions/cmdline.h
./kernel/printk/console_cmdline.h
./include/config/fb/cmdline.h
./include/config/cmdline/from/bootloader.h
./include/config/mtd/cmdline/parts.h
./include/config/cmdline.h
./include/config/arm/atag/dtb/compat/cmdline/from/bootloader.h
./include/linux/cmdline-parser.h
./arch/x86/include/asm/cmdline.h$ find . |grep cmdline |grep \\.c$
./block/cmdline-parser.c
./block/partitions/cmdline.c
./fs/proc/cmdline.c
./drivers/video/fbdev/core/fb_cmdline.c
./drivers/mtd/cmdlinepart.c
./arch/x86/boot/cmdline.c
./arch/x86/boot/compressed/cmdline.c
./arch/x86/lib/cmdline.c
./arch/mips/loongson64/common/cmdline.c
./arch/mips/fw/arc/cmdline.c
./arch/mips/fw/lib/cmdline.c
./arch/mips/dec/prom/cmdline.c
./lib/cmdline.c可以从这里面找代码
离线
$ grep boot_command_line -r drivers/
drivers/of/fdt.c:       of_scan_flat_dt(early_init_dt_scan_chosen, boot_command_line);
drivers/tty/hvc/hvc_vio.c:      if (!strstr(boot_command_line, "console="))
drivers/tty/serial/8250/8250_omap.c:    if (strstr(boot_command_line, "console=ttyS"))
drivers/tty/serial/8250/8250_omap.c:    omap_str = strstr(boot_command_line, "console=ttyO");
drivers/cpufreq/pmac32-cpufreq.c:       if (strstr(boot_command_line, "nocpufreq"))
$
$ grep boot_command_line -r --include "*.h"
include/linux/init.h:extern char __initdata boot_command_line[];
include/linux/init.h:/* Relies on boot_command_line being set */好奇搜了一下, 还真有
引用 include/linux/init.h 就可以调用 boot_command_line 这个数组了。
离线
感谢楼主分享,我试了一下,有些机器正常,有些机器应用启动了,开机进度条还在走,界面乱了,有什么好的通讯方式,让应用通知驱动停止刷新吗?
因为各种机型的应用程序和配置文件大小各不相同。
离线
你可以修改进度条的源文件,根据你应用程序大概的启动时间修改进度条的时间。
离线
进度条使用该代码 显示的时候会有断裂的的现象并且如果时间长会有加不满的现象 原因可能有哪些?
离线