Magellan Linux

Diff of /smage/trunk/core/base-files/base-files-0.2-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1316 by niro, Mon Feb 7 00:29:14 2011 UTC revision 1317 by niro, Mon Feb 7 01:07:14 2011 UTC
# Line 75  src_install() Line 75  src_install()
75   # splash-functions needs this one   # splash-functions needs this one
76   mknod ${BINDIR}/dev/fb0 c 29 0 || die   mknod ${BINDIR}/dev/fb0 c 29 0 || die
77  }  }
78    
79    postinstall()
80    {
81     if [[ ! -c ${MROOT}/dev/console ]]
82     then
83     mknod ${MROOT}/dev/console c 5 1
84     fi
85    
86     if [[ ! -c ${MROOT}/dev/null ]]
87     then
88     mknod ${MROOT}/dev/null c 1 3
89     fi
90    
91     if [[ ! -c ${MROOT}/dev/tty ]]
92     then
93     mknod ${MROOT}/dev/tty c 5 0
94     fi
95    
96     if [[ ! -c ${MROOT}/dev/tty5 ]]
97     then
98     mknod ${MROOT}/dev/tty5 c 4 5
99     fi
100    
101     if [[ ! -c ${MROOT}/dev/fb0 ]]
102     then
103     mknod ${BINDIR}/dev/fb0 c 29 0
104     fi
105    }

Legend:
Removed from v.1316  
changed lines
  Added in v.1317