0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 52.14.26.141


Current Path : /proc/self/root/usr/share/initramfs-tools/scripts/init-top/
Upload File :
Current File : //proc/self/root/usr/share/initramfs-tools/scripts/init-top/all_generic_ide

#!/bin/sh

PREREQ=""
prereqs()
{
	echo "$PREREQ"
}
case $1 in
# get pre-requisites
prereqs)
	prereqs
	exit 0
	;;
esac

for x in $(cat /proc/cmdline); do
	case ${x} in
	all_generic_ide)
		modprobe ata_generic all_generic_ide=1
		;;
	all_generic_ide=*)
		if [ ${x#all_generic_ide=} ]; then
			modprobe ata_generic all_generic_ide=1
		fi
		;;
	esac
done