We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ref: UltimateROM/android_external_busybox
# loop devs for i in `seq 0 7`; do mknod loop$i b 7 $i done # ram devs for i in `seq 0 9`; do mknod ram$i b 1 $i done ln -s ram1 ram # ttys mknod tty c 5 0 for i in `seq 0 9`; do mknod tty$i c 4 $i done # virtual console screen devs for i in `seq 0 9`; do mknod vcs$i b 7 $i done ln -s vcs0 vcs # virtual console screen w/ attributes devs for i in `seq 0 9`; do mknod vcsa$i b 7 $((128 + i)) done ln -s vcsa0 vcsa
The text was updated successfully, but these errors were encountered:
Note: Major number see /proc/devices.
/proc/devices
Sorry, something went wrong.
No branches or pull requests
Ref: UltimateROM/android_external_busybox
The text was updated successfully, but these errors were encountered: