init 3.46 KB
Newer Older
longpanda's avatar
update  
longpanda committed
1
#!/ventoy/busybox/ash
longpanda's avatar
longpanda committed
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#************************************************************************************
# Copyright (c) 2020, longpanda <admin@ventoy.net>
# 
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 3 of the
# License, or (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
# 
#************************************************************************************

####################################################################
#                                                                  #
# Step 1 : extract busybox & set busybox enviroment                #
#                                                                  #
####################################################################

export VTOY_ORG_PATH=$PATH
export VTOY_PATH=/ventoy
export BUSYBOX_PATH=$VTOY_PATH/busybox
export VTLOG=$VTOY_PATH/log
export FIND=$BUSYBOX_PATH/find
export GREP=$BUSYBOX_PATH/grep
export EGREP=$BUSYBOX_PATH/egrep
export CAT=$BUSYBOX_PATH/cat
export AWK=$BUSYBOX_PATH/awk
export SED=$BUSYBOX_PATH/sed
export SLEEP=$BUSYBOX_PATH/sleep
export HEAD=$BUSYBOX_PATH/head

longpanda's avatar
update  
longpanda committed
39
40
41
42
43
44
45
46
if [ -e $BUSYBOX_PATH/64h ]; then
    $BUSYBOX_PATH/xzminidec32 < $BUSYBOX_PATH/busybox32.xz > $BUSYBOX_PATH/busybox
    $BUSYBOX_PATH/vtchmod32 $BUSYBOX_PATH/busybox
else
    $BUSYBOX_PATH/xzminidec64 < $BUSYBOX_PATH/busybox64.xz > $BUSYBOX_PATH/busybox 
    $BUSYBOX_PATH/vtchmod64 $BUSYBOX_PATH/busybox
fi

longpanda's avatar
longpanda committed
47
48
49
50
$BUSYBOX_PATH/busybox --install $BUSYBOX_PATH

export PATH=$BUSYBOX_PATH/:$VTOY_PATH/tool

longpanda's avatar
bug fix  
longpanda committed
51
52
export VTOY_BREAK_LEVEL=$(hexdump -n 1 -s 449 -e '1/1 "%02x"' $VTOY_PATH/ventoy_os_param)
export VTOY_DEBUG_LEVEL=$(hexdump -n 1 -s 450 -e '1/1 "%02x"' $VTOY_PATH/ventoy_os_param)
longpanda's avatar
longpanda committed
53
54
55
56
57
58
59
60
61
62
63

#Fixme: busybox shell output redirect seems to have some bug in rhel5
if uname -a | grep -q el5; then
    VTOY_REDT_BUG=YES
fi

if [ -z "$VTOY_REDT_BUG" ]; then
    echo "============== VENTOY =================" >>$VTLOG
fi

cd $VTOY_PATH
longpanda's avatar
longpanda committed
64
65
xz -d ventoy_chain.sh.xz
xz -d ventoy_loop.sh.xz
longpanda's avatar
longpanda committed
66
67
68
69

if [ -n "$VTOY_REDT_BUG" ]; then
    xz -d -c hook.cpio.xz | cpio -idm
    xz -d -c tool.cpio.xz | cpio -idm
longpanda's avatar
update  
longpanda committed
70
    xz -d -c loop.cpio.xz | cpio -idm
longpanda's avatar
longpanda committed
71
72
73
else
    xz -d -c hook.cpio.xz | cpio -idm 2>>$VTLOG
    xz -d -c tool.cpio.xz | cpio -idm 2>>$VTLOG
longpanda's avatar
update  
longpanda committed
74
75
76
77
78
79
80
81
82
83
84
    xz -d -c loop.cpio.xz | cpio -idm 2>>$VTLOG
fi

if [ -e $BUSYBOX_PATH/64h ]; then
    echo "Use busybox32 toolkit ..." >>$VTLOG
    ln -s $BUSYBOX_PATH/xzminidec32 $BUSYBOX_PATH/xzminidec
    ln -s $VTOY_PATH/tool/dmsetup32 $VTOY_PATH/tool/dmsetup
else
    echo "Use busybox64 toolkit ..." >>$VTLOG
    ln -s $BUSYBOX_PATH/xzminidec64 $BUSYBOX_PATH/xzminidec
    ln -s $VTOY_PATH/tool/dmsetup64 $VTOY_PATH/tool/dmsetup
longpanda's avatar
longpanda committed
85
86
87
88
89
90
91
92
93
94
95
fi

rm -f *.xz
cd /

####################################################################
#                                                                  #
# Step 2 : Hand over to ventoy init                                #
#                                                                  #
####################################################################
exec $BUSYBOX_PATH/sh $VTOY_PATH/init