forked from ventoy/Ventoy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/ventoy/Ventoy
- Loading branch information
Showing
28 changed files
with
269 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/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 | ||
|
||
if is_ventoy_hook_finished; then | ||
exit 0 | ||
fi | ||
|
||
vtlog "####### $0 $* ########" | ||
|
||
VTPATH_OLD=$PATH; PATH=$BUSYBOX_PATH:$VTOY_PATH/tool:$PATH | ||
|
||
wait_for_usb_disk_ready | ||
|
||
vtdiskname=$(get_ventoy_disk_name) | ||
if [ "$vtdiskname" = "unknown" ]; then | ||
vtlog "ventoy disk not found" | ||
PATH=$VTPATH_OLD | ||
exit 0 | ||
fi | ||
|
||
ventoy_udev_disk_common_hook "${vtdiskname#/dev/}2" "noreplace" | ||
|
||
blkdev_num=$($VTOY_PATH/tool/dmsetup ls | grep ventoy | sed 's/.*(\([0-9][0-9]*\),.*\([0-9][0-9]*\).*/\1 \2/') | ||
mknod -m 0666 /dev/ventoy b $blkdev_num | ||
|
||
|
||
PATH=$VTPATH_OLD | ||
|
||
set_ventoy_hook_finish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/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/>. | ||
# | ||
#************************************************************************************ | ||
|
||
. $VTOY_PATH/hook/ventoy-os-lib.sh | ||
|
||
echo "CDlinux process..." >> $VTLOG | ||
|
||
$BUSYBOX_PATH/mknod -m 0660 /ventoy/ram0 b 1 0 | ||
|
||
$BUSYBOX_PATH/mkdir /vtmnt /ventoy_rdroot | ||
$BUSYBOX_PATH/mount -t squashfs /ventoy/ram0 /vtmnt | ||
|
||
$BUSYBOX_PATH/mount -nt tmpfs -o mode=755 tmpfs /ventoy_rdroot | ||
|
||
$BUSYBOX_PATH/cp -a /vtmnt/* /ventoy_rdroot | ||
$BUSYBOX_PATH/ls -1a /vtmnt/ | $GREP '^\.[^.]' | while read vtLine; do | ||
$BUSYBOX_PATH/cp -a /vtmnt/$vtLine /ventoy_rdroot | ||
done | ||
|
||
$BUSYBOX_PATH/umount /vtmnt && $BUSYBOX_PATH/rm -rf /vtmnt | ||
$BUSYBOX_PATH/cp -a /ventoy /ventoy_rdroot | ||
|
||
echo "CDL_DEV=/dev/mapper/ventoy" >> /ventoy_rdroot/etc/default/cdlinux | ||
|
||
ventoy_set_rule_dir_prefix /ventoy_rdroot | ||
ventoy_systemd_udevd_work_around | ||
ventoy_add_udev_rule "$VTOY_PATH/hook/default/udev_disk_hook.sh %k" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
#!/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 | ||
|
||
if is_ventoy_hook_finished; then | ||
exit 0 | ||
fi | ||
|
||
vtlog "####### $0 $* ########" | ||
|
||
VTPATH_OLD=$PATH; PATH=$BUSYBOX_PATH:$VTOY_PATH/tool:$PATH | ||
|
||
wait_for_usb_disk_ready | ||
|
||
vtdiskname=$(get_ventoy_disk_name) | ||
if [ "$vtdiskname" = "unknown" ]; then | ||
vtlog "ventoy disk not found" | ||
PATH=$VTPATH_OLD | ||
exit 0 | ||
fi | ||
|
||
ventoy_udev_disk_common_hook "${vtdiskname#/dev/}2" "noreplace" | ||
|
||
blkdev_num=$($VTOY_PATH/tool/dmsetup ls | grep ventoy | sed 's/.*(\([0-9][0-9]*\),.*\([0-9][0-9]*\).*/\1 \2/') | ||
mknod -m 0666 /dev/ventoy b $blkdev_num | ||
|
||
|
||
PATH=$VTPATH_OLD | ||
|
||
set_ventoy_hook_finish |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#!/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 | ||
|
||
if is_ventoy_hook_finished || not_ventoy_disk "${1:0:-1}"; then | ||
exit 0 | ||
fi | ||
|
||
ventoy_udev_disk_common_hook $* "noreplace" | ||
blkdev_num=$($VTOY_PATH/tool/dmsetup ls | grep ventoy | sed 's/.*(\([0-9][0-9]*\),.*\([0-9][0-9]*\).*/\1 \2/') | ||
mknod -m 0666 /dev/ventoy b $blkdev_num | ||
|
||
# OK finish | ||
set_ventoy_hook_finish | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
#!/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/>. | ||
# | ||
#************************************************************************************ | ||
|
||
. $VTOY_PATH/hook/ventoy-os-lib.sh | ||
|
||
if $GREP -q 'Searching *for *PMAGIC' /init; then | ||
echo "Find Searching PMAGIC" >> $VTLOG | ||
$SED "/Searching *for *PMAGIC/a\ root=/dev/ventoy" -i /init | ||
$SED "/Searching *for *PMAGIC/a\ $BUSYBOX_PATH/sh $VTOY_PATH/hook/pmagic/disk-hook.sh" -i /init | ||
else | ||
echo "Use default..." >> $VTLOG | ||
$SED "s#^root=.*cmdline.*#root=/dev/ventoy#g'" -i /init | ||
ventoy_systemd_udevd_work_around | ||
ventoy_add_udev_rule "$VTOY_PATH/hook/pmagic/udev_disk_hook.sh %k" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.