-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
buildroot/board/tcrpfriend/rootfs-overlay/root/config/_common/iosched-trampoline5.sh
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,11 @@ | ||
#!/usr/bin/sh | ||
# This script is saved to /sbin/modprobe which is a so called UMH (user-mode-helper) for kmod (kernel/kmod.c) | ||
# The kmod subsystem in the kernel is used to load modules from kernel. We exploit it a bit to load RP as soon as | ||
# possible (which turns out to be via init/main.c => load_default_modules => load_default_elevator_module | ||
# When the kernel is booted with "elevator=elevator" it will attempt to load a module "elevator-iosched"... and the rest | ||
# should be obvious from the code below. DO NOT print anything here (kernel doesn't attach STDOUT) | ||
insmod /usr/lib/modules/rp.ko | ||
rm /usr/lib/modules/rp.ko | ||
rm /sbin/modprobe | ||
ln -s /bin/busybox /sbin/modprobe | ||
modprobe $@ |