udev_disk_hook.sh 4.67 KB
Newer Older
longpanda's avatar
longpanda committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/ventoy/busybox/sh
#************************************************************************************
# 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/>.
# 
#************************************************************************************

. /ventoy/hook/ventoy-hook-lib.sh

ventoy_os_install_dmsetup() {

longpanda's avatar
longpanda committed
24
25
    vtlog "ventoy_os_install_dmsetup $1 ..."

longpanda's avatar
longpanda committed
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
    vt_usb_disk=$1

    # dump iso file location
    $VTOY_PATH/tool/vtoydm -i -f $VTOY_PATH/ventoy_image_map -d ${vt_usb_disk} > $VTOY_PATH/iso_file_list

    # install dmsetup 
    LINE=$($GREP ' dmsetup.*\.udeb'  $VTOY_PATH/iso_file_list)
    if [ $? -eq 0 ]; then
        install_udeb_from_line "$LINE" ${vt_usb_disk}
    fi

    # install libdevmapper
    LINE=$($GREP ' libdevmapper.*\.udeb'  $VTOY_PATH/iso_file_list)
    if [ $? -eq 0 ]; then
        install_udeb_from_line "$LINE" ${vt_usb_disk}
    fi

    # install md-modules
    LINE=$($GREP ' md-modules.*\.udeb'  $VTOY_PATH/iso_file_list)
    if [ $? -eq 0 ]; then
longpanda's avatar
update  
longpanda committed
46
47
48
49
        LINTCNT=$($GREP -c ' md-modules.*\.udeb'  $VTOY_PATH/iso_file_list)
        if [ $LINTCNT -gt 1 ]; then
            vtlog "more than one pkgs, need to filter..."
            VER=$($BUSYBOX_PATH/uname -r)
longpanda's avatar
longpanda committed
50
            
longpanda's avatar
update  
longpanda committed
51
            LINE=$($GREP ' md-modules.*\.udeb'  $VTOY_PATH/iso_file_list | $GREP $VER)
longpanda's avatar
longpanda committed
52
53
54
55
56
            LINTCNT=$($GREP ' md-modules.*\.udeb'  $VTOY_PATH/iso_file_list | $GREP -c $VER)
            if [ $LINTCNT -gt 1 ]; then
                vtlog "Still more than one pkgs, use the first one..."
                LINE=$($GREP ' md-modules.*\.udeb'  $VTOY_PATH/iso_file_list | $GREP  -m1 $VER)
            fi
longpanda's avatar
update  
longpanda committed
57
        fi
longpanda's avatar
longpanda committed
58
59
60
61
62
63
64
        install_udeb_from_line "$LINE" ${vt_usb_disk} 
    fi

    # insmod md-mod if needed
    if $GREP -q 'device-mapper' /proc/devices; then
        vtlog "device mapper module is loaded"
    else
longpanda's avatar
longpanda committed
65
        vtlog "device mapper module is NOT loaded, now load it..."
longpanda's avatar
longpanda committed
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
        
        VER=$($BUSYBOX_PATH/uname -r)    
        KO=$($FIND /lib/modules/$VER/kernel/drivers/md -name "dm-mod*")
        vtlog "KO=$KO"
        
        insmod $KO
    fi
    
    vtlog "dmsetup install finish, now check it..."
    if dmsetup info >> $VTLOG 2>&1; then
        vtlog "dmsetup work ok"
    else
        vtlog "dmsetup not work, now try to load eglibc ..."
        
        # install eglibc (some ubuntu 32 bit version need it)
        LINE=$($GREP 'libc6-.*\.udeb'  $VTOY_PATH/iso_file_list)
        if [ $? -eq 0 ]; then
            install_udeb_from_line "$LINE" ${vt_usb_disk} 
        fi
        
        if dmsetup info >> $VTLOG 2>&1; then
            vtlog "dmsetup work ok after retry"
        else
            vtlog "dmsetup still not work after retry"
        fi
    fi
}

if is_ventoy_hook_finished || not_ventoy_disk "${1:0:-1}"; then
    exit 0
fi

longpanda's avatar
update  
longpanda committed
98
99
vtlog "==== $0 $* ====" 

longpanda's avatar
longpanda committed
100
101
102
103
104
dmsetup_path=$(ventoy_find_bin_path dmsetup)
if [ -z "$dmsetup_path" ]; then
    ventoy_os_install_dmsetup "/dev/${1:0:-1}"
fi

longpanda's avatar
longpanda committed
105
106
107
108
if ! $GREP -q 'device-mapper' /proc/devices; then
    ventoy_os_install_dmsetup "/dev/${1:0:-1}"
fi

longpanda's avatar
longpanda committed
109
110
111
112
113
114
115
ventoy_udev_disk_common_hook $*

#
# Some distro default only accept usb partitions as install medium.
# So if ventoy is installed on a non-USB device, we just mount /cdrom here except
# for these has boot=live or boot=casper parameter in cmdline
#
longpanda's avatar
update  
longpanda committed
116
117
118
119
120
121
122
123
124
125
126
127
VT_BUS_USB=""
if [ -n "$ID_BUS" ]; then
    if echo $ID_BUS | $GREP -q -i usb; then
        VT_BUS_USB="YES"
    fi
else
    if $BUSYBOX_PATH/ls -l /sys/class/block/${1:0:-1} | $GREP -q -i usb; then
        VT_BUS_USB="YES"
    fi
fi

if [ -n "$VT_BUS_USB" ]; then
longpanda's avatar
longpanda committed
128
129
130
131
132
133
134
135
136
    vtlog "$1 is USB device"
else
    vtlog "$1 is NOT USB device (bus $ID_BUS)"
    
    if $EGREP -q 'boot=|casper' /proc/cmdline; then
        vtlog "boot=, or casper, don't mount"
    else
        vtlog "No boot param, need to mount"
        $BUSYBOX_PATH/mkdir /cdrom
longpanda's avatar
longpanda committed
137
138
139
140
141
142
143
144
        
        if [ -b $VTOY_DM_PATH ]; then
            vtlog "mount $VTOY_DM_PATH ..."
            $BUSYBOX_PATH/mount -t iso9660 $VTOY_DM_PATH  /cdrom
        else
            vtlog "mount /dev/$1 ..."
            $BUSYBOX_PATH/mount -t iso9660 /dev/$1  /cdrom
        fi
longpanda's avatar
longpanda committed
145
146
147
    fi
fi

longpanda's avatar
longpanda committed
148

longpanda's avatar
longpanda committed
149
150
# OK finish
set_ventoy_hook_finish