⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 nodes.sh

📁 These are the kernel patches against the 2.6.11_rc5 kernel from linux-mips.org for the AMD Alchemy
💻 SH
字号:
#!/bin/shecho Creating device nodes: fb, mae, dsp, mixer...if [ -c /dev/fb0 ]; then  echo Removing fb0 and fb1...  rm -f /dev/fb0  rm -f /dev/fb1  echo "Recreating fb0(29,0) and fb1(29,1)..."fi[ ! -c /dev/fb0 ] && mknod /dev/fb0 c 29 0[ ! -c /dev/fb1 ] && mknod /dev/fb1 c 29 1if [ -c /dev/mae ]; then  echo Removing mae...  rm -f /dev/mae  echo "Recreating mae(251,2)..."fi[ ! -c /dev/mae ] && mknod /dev/mae c 251 2[ ! -c /dev/dsp ] && mknod /dev/dsp c 14 3[ ! -c /dev/mixer ] && mknod /dev/mixer c 14 0echo Nodes created.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -