/
rgd045
/
linux-live-kit
Обзор
Документация
Войти
/
rgd045
/
linux-live-kit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
initramfs/init
67 строк
2 KB
Tomas M
revert this, it would make problems
22 авг 2023, 12:31
22 авг 2023, 12:31
3b99ade
Код
Авторство
О чём код?
#!/bin/sh # Initial script for Linux Live Kit # Author: Tomas M <http://www.linux-live.org/> export PATH=.:/:/usr/sbin:/usr/bin:/sbin:/bin . /lib/config . /lib/livekitlib transfer_initramfs MEMORY=/memory CHANGES=$MEMORY/changes UNION=$MEMORY/union DATAMNT=$MEMORY/data BUNDLES=$MEMORY/bundles header "Live Kit init <http://www.linux-live.org/>" init_proc_sysfs debug_start debug_shell # load some modules manually first, then modprobe everything we have init_devs init_aufs init_zram # modprobe all devices excluding network drivers modprobe_everything -v /drivers/net/ # initialize blkid cache file init_blkid_cache # find data dir with filesystem bundles DATA="$(find_data 45 "$DATAMNT")" check_data_found "$DATA" debug_shell # setup persistent changes, if possible persistent_changes "$DATA" "$CHANGES" debug_shell # copy to RAM if needed DATA="$(copy_to_ram "$DATA" "$CHANGES")" # mount bundles mount_bundles "$DATA" "$BUNDLES" debug_shell # init aufs union, or setup overlayfs union init_union "$CHANGES" "$UNION" "$BUNDLES" # add data to aufs union union_append_bundles "$BUNDLES" "$UNION" debug_shell # rootcopy copy_rootcopy_content "$DATA" "$UNION" # create fstab fstab_create "$UNION" "$DATAMNT" debug_shell # run user custom preinit user_preinit "$DATA" "$UNION" header "Live Kit done, starting $LIVEKITNAME" change_root "$UNION" header "!!ERROR occured, you shouldn't be here.!!" /bin/sh