OK335xS psplash 进度条工作原理 hacking

#!/bin/sh
#
# rc     This file is responsible for starting/stopping
#        services when the runlevel changes.
#
#        Optimization feature:
#        A startup script is _not_ run when the service was
#        running in the previous runlevel and it wasn't stopped
#        in the runlevel transition (most Debian services don't
#        have K?? links in rc{1,2,3,4,5} )
#
# Author:    Miquel van Smoorenburg <miquels@cistron.nl>
#        Bruce Perens <Bruce@Pixar.com>
#
# Version:    @(#)rc  2.78  07-Nov-1999  miquels@cistron.nl
#

# 一. 参考文档:
#     1. inittab脚本启动解析
#         http://blog.chinaunix.net/uid-17188120-id-4073497.html
#     2. Customizing the SDK Splash Screen
#         http://processors.wiki.ti.com/index.php/Customizing_the_SDK_Splash_Screen
#     3. psplash进度条旋转成功
#         http://www.xuebuyuan.com/1511619.html
#
#                                    2016-1-9 深圳 南山平山村 曾剑锋 

##
##
## /etc/default/rcS
##
## Default settings for the scripts in /etc/rcS.d/
##
## For information about these variables see the rcS(5) manual page.
##
## This file belongs to the "initscripts" package.
#
## delete files in /tmp during boot older than x days.
## '0' means always, -1 or 'infinite' disables the feature
#TMPTIME=0
#
## spawn sulogin during boot, continue normal boot if not used in 30 seconds
#SULOGIN=no
#
## do not allow users to log in until the boot has completed
#DELAYLOGIN=no
#
## assume that the BIOS clock is set to UTC time (recommended)
#UTC=yes
#
## be more verbose during the boot process
#VERBOSE=no
#
## automatically repair filesystems with inconsistencies during boot
#FSCKFIX=no
. /etc/default/rcS
export VERBOSE

# 在rcS中设置的一些环境变量
# PATH=/sbin:/bin:/usr/sbin:/usr/bin
# runlevel=S
# prevlevel=N
# umask 022
# export PATH runlevel prevlevel
#
# exec /etc/init.d/rc S

# 这个函数名可以认为是重置进度条进度
startup_progress() {
    # 当前进度大小=上一次的进度+上每次的进度的变化值
    step=$(($step + $step_change))
    if [ "$num_steps" != "0" ]; then
        # 这里相当于重新计算当前step占进度条的百分比
        progress=$((($step * $progress_size / $num_steps) + $first_step))
    else
        # 直接就是100%了
        progress=$progress_size
    fi
    #echo "PROGRESS is $progress $runlevel $first_step + ($step of $num_steps) $step_change $progress_size"
    #if type psplash-write >/dev/null 2>&1; then
    #    TMPDIR=/mnt/.psplash psplash-write "PROGRESS $progress" || true
    #fi
    # 将上面的progress的值写入fifo中去,echo的值是固定的。
    if [ -e /mnt/.psplash/psplash_fifo ]; then
        echo "PROGRESS $progress" > /mnt/.psplash/psplash_fifo
    fi
}

#
# Start script or program.
#
# 启动脚本函数
startup() {
    # Handle verbosity
    # VERBOSE=no, 不显示这一部分内容
    [ "$VERBOSE" = very ] && echo "INIT: Running $@..."

    case "$1" in
        *.sh)
            # Source shell script for speed.
            # 这里相当于直接执行脚本,丢弃了参数
            (
                trap - INT QUIT TSTP
                scriptname=$1
                shift
                . $scriptname
            )
            ;;
        *)
            # 执行参数里命令
            "$@"
            ;;
    esac
    startup_progress
}

# Ignore CTRL-C only in this shell, so we can interrupt subprocesses.
# 这里就是捕捉INT QUIT TSTP三个信号,执行“:”,实际就是忽略这三个信号,防止脚本执行时使用ctrl-C 就退出脚本
trap ":" INT QUIT TSTP

# Set onlcr to avoid staircase effect.
# 设置onlcr避免楼梯的效果。
stty onlcr 0>&1

# Now find out what the current and what the previous runlevel are.

runlevel=$RUNLEVEL
#echo "danny add"
echo  $2
sleep 5
# Get first argument. Set new runlevel to this argument.
# 由于传进来的参数的$1=S,所以这里可以断定的是runlevel是S
[ "$1" != "" ] && runlevel=$1
if [ "$runlevel" = "" ]
then
    echo "Usage: $0 <runlevel>" >&2
    exit 1
fi
# 目前没有看到由有关PREVLEVEL相关的内容,这里previous是N
previous=$PREVLEVEL
[ "$previous" = "" ] && previous=N

export runlevel previous

# Is there an rc directory for this new runlevel?
if [ -d /etc/rc$runlevel.d ]
then
    # Find out where in the progress bar the initramfs got to.
    PROGRESS_STATE=0
    #if [ -f /dev/.initramfs/progress_state ]; then
    #    . /dev/.initramfs/progress_state
    #fi

    # Split the remaining portion of the progress bar into thirds
    # 感觉这里可以认为是:已经出了一部分的脚本了,这部分内容也应该算进去
    # 所以给出一部分进度条的空间出来,这样,进度条就不像是从0开始,至少
    # 当我们看到图像的时候,psplash这个进程已经跑起来了。
    progress_size=$(((100 - $PROGRESS_STATE) / 3))

    # 这里的runlevel是S
    case "$runlevel" in
        0|6)
            # Count down from -100 to 0 and use the entire bar
            first_step=-100
            progress_size=100
            step_change=1
            ;;
        S)
            # Begin where the initramfs left off and use 2/3
            # of the remaining space
            first_step=$PROGRESS_STATE
            progress_size=$(($progress_size * 2))  # 剩下2/3
            step_change=1
            ;;
        *)
            # Begin where rcS left off and use the final 1/3 of
            # the space (by leaving progress_size unchanged)
            first_step=$(($progress_size * 2 + $PROGRESS_STATE))
            step_change=1
            ;;
    esac

    num_steps=0
    for s in /etc/rc$runlevel.d/[SK]*; do
        case "${s##/etc/rc$runlevel.d/S??}" in
            gdm|xdm|kdm|reboot|halt)
                break
                ;;
        esac
        num_steps=$(($num_steps + 1))
    done
    step=0

    # First, run the KILL scripts.
    # 先结束掉需要结束的进程
    if [ $previous != N ]
    then
        for i in /etc/rc$runlevel.d/K[0-9][0-9]*
        do
            # Check if the script is there.
            [ ! -f $i ] && continue

            # Stop the service.
            startup $i stop
        done
    fi

    # Now run the START scripts for this runlevel.
    for i in /etc/rc$runlevel.d/S*
    do
        [ ! -f $i ] && continue

        # 这里的previous=N,可以不用关心
        if [ $previous != N ] && [ $previous != S ]
        then
            #
            # Find start script in previous runlevel and
            # stop script in this runlevel.
            #
            suffix=${i#/etc/rc$runlevel.d/S[0-9][0-9]}
            stop=/etc/rc$runlevel.d/K[0-9][0-9]$suffix
            previous_start=/etc/rc$previous.d/S[0-9][0-9]$suffix
            #
            # If there is a start script in the previous level
            # and _no_ stop script in this level, we don't
            # have to re-start the service.
            #
            [ -f $previous_start ] && [ ! -f $stop ] && continue
        fi
        case "$runlevel" in
            0|6)
                startup $i stop
                ;;
            *)
                startup $i start
                ;;
        esac
    done
fi

#Uncomment to cause psplash to exit manually, otherwise it exits when it sees a VC switch
if [ "x$runlevel" != "xS" ] && [ ! -x /etc/init.d/xserver-nodm ]; then
    . /etc/init.d/qt.sh
#    if type psplash-write >/dev/null 2>&1; then
#        TMPDIR=/mnt/.psplash psplash-write "QUIT" || true
#        umount /mnt/.psplash
#    fi
fi

 

时间: 2024-10-06 21:05:09

OK335xS psplash 进度条工作原理 hacking的相关文章

PPT制作进度条效果的方法

PPT制作进度条效果的方法   问题分析 用PPT制作进度条,相信难点在于数字的跳动和进度条的同步.教程中假设数字从10到100(间隔为10的倍数),每个数字跳动时间为0.1秒,10个数字时间共1秒,与此同时,把进度条的总出现时间设置为1秒,这样,就能做到数字的总时间和进度条的总时间相同,达到同步的目的--这就是制作PPT进度条的原理. 预备工作 在PPT制作进度条制作前,我们需要先把需要的素材(10个数字和进度条)先准备好. 动画设置 整个动画过程,我们需要把所有动画的[开始],设置为[与上一

iOS快速实现环形渐变进度条_IOS

前言 进度条相信我们大家都不陌生,往往我们很多时候需要使用到圆形进度条.这篇文章给大家分享了利用iOS如何快速实现环形进度条,下面来一起看看. 一:先制作一个不带颜色渐变的进度条 自定义一个cycleView,在.m 中实现drawRect方法 - (void)drawRect:(CGRect)rect { CGContextRef ctx = UIGraphicsGetCurrentContext();//获取上下文 CGPoint center = CGPointMake(100, 100)

ASP.NET技巧:教你制做Web实时进度条

asp.net|web|技巧 网上已经有很多Web进度条的例子,但是很多都是估算时间,不能正真反应任务的真实进度.我自己结合多线程和ShowModalDialog制做了一个实时进度条,原理很简单:使用线程开始长时间的任务,定义一个Session,当任务进行到不同的阶段改变Session的值,线程开始的同时使用ShowModalDialog打开一个进度条窗口,不断刷新这个窗口获取Session值,反应出实时的进度.下面就来看看具体的代码:(文章结尾处下载源代码) 先新建一个Default.aspx

Javascript jquery css 写的简单进度条控件_jquery

Javascript 进度条 Demo 原理就是使用 Javascript 控制 SPAN CSS 的宽度(以及其他的样式),详细信息可以参见链接:http://www.jb51.net/article/13993.htm  

Python显示进度条实现方法

一.进度条实现原理 进度条和一般的print区别在哪里呢? 答案就是print会输出一个\n,也就是换行符,这样光标移动到了下一行行首,接着输出,之前已经通过stdout输出的东西依旧保留,而且保证我们在下面看到最新的输出结果. 进度条不然,我们必须再原地输出才能保证他是一个进度条,否则换行了怎么还叫进度条? 实现进度条最简单的办法就是,在输出完毕后,把光标移动到行首,继续在那里输出更长的进度条即可实现,新的更长的进度条把旧的短覆盖,就形成了动画效果.  二.实现方法 1.\r转义实现 转义符\

PHP实现的进度条效果详解_php技巧

本文实例讲述了PHP实现的进度条效果.分享给大家供大家参考,具体如下: 在做采集的时候,想通过php来实现一个进度条功能,谷歌了一下,找了个合适的代码.下面直接上代码: <?php //防止执行超时 set_time_limit(0); //清空并关闭输出缓存 ob_end_clean(); //需要循环的数据 for($i = 0; $i < 188; $i++) { $users[] = 'Tom_' . $i; } //计算数据的长度 $total = count($users); //

ASP.NET技巧:教你制做Web实时进度条_实用技巧

网上已经有很多Web进度条的例子,但是很多都是估算时间,不能正真反应任务的真实进度.我自己结合多线程和ShowModalDialog制做了一个实时进度条,原理很简单:使用线程开始长时间的任务,定义一个Session,当任务进行到不同的阶段改变Session的值,线程开始的同时使用ShowModalDialog打开一个进度条窗口,不断刷新这个窗口获取Session值,反应出实时的进度.下面就来看看具体的代码:(文章结尾处下载源代码) 先新建一个Default.aspx页面,客户端代码: <body

Android实现支持进度条显示的短信备份工具类_Android

使用内容提供者读取短信内容,写入XML文件,进度条ProgressDialog更新备份进度.新知识点:子线程如何在在不使用Handler的情况下更新UI /** * 进行短信备份的工具类,支持进度条显示 * @author lian * */ public class SmsBackupUtils { private static class Data{ int progress; } /** * * @param context * 调用此工具类的Activity * @param pd *

js实现进度条的方法_javascript技巧

本文实例讲述了js实现进度条的方法.分享给大家供大家参考.具体实现方法如下: 1.setTimeout和clearTimeout <html> <head> <title>进度条</title> <style type="text/css"> .container{ width:450px; border:1px solid #6C9C2C; height:25px; } #bar{ background:#95CA0D; f