Skip to content
New issue

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

[Bug] Missing Devices #21

Open
urain39 opened this issue Aug 16, 2019 · 1 comment
Open

[Bug] Missing Devices #21

urain39 opened this issue Aug 16, 2019 · 1 comment
Labels
bug Something isn't working enhancement New feature or request

Comments

@urain39
Copy link
Collaborator

urain39 commented Aug 16, 2019

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
@urain39 urain39 added bug Something isn't working enhancement New feature or request labels Aug 16, 2019
@urain39
Copy link
Collaborator Author

urain39 commented Aug 16, 2019

Note: Major number see /proc/devices.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant