On Mon, Dec 21 16:54, Kevin Wolf wrote: > + config/servmgr: Services fuer alle Netzwerktreiber definiert > * config/servmgr: Anstatt rtl8139 direkt in default zu laden, wird jetzt > nic geladen, das eine Abhaengigkeit auf die aktuell eingestellte > Netzwerkkarte hat > > Signed-off-by: Kevin Wolf <kevin@xxxxxxxxxx> > --- > build/root-common/config/servmgr/default/deps | 2 +- > build/root-common/config/servmgr/e1000/cmd | 1 + > build/root-common/config/servmgr/e1000/deps | 2 ++ > build/root-common/config/servmgr/ne2k/cmd | 1 + > build/root-common/config/servmgr/ne2k/deps | 2 ++ > build/root-common/config/servmgr/nic/cmd | 1 + > build/root-common/config/servmgr/nic/conf | 1 + > build/root-common/config/servmgr/nic/deps | 1 + > build/root-common/config/servmgr/pcnet/cmd | 1 + > build/root-common/config/servmgr/pcnet/deps | 2 ++ > build/root-common/config/servmgr/sis900/cmd | 1 + > build/root-common/config/servmgr/sis900/deps | 2 ++ > 12 files changed, 16 insertions(+), 1 deletions(-) > create mode 100644 build/root-common/config/servmgr/e1000/cmd > create mode 100644 build/root-common/config/servmgr/e1000/deps > create mode 100644 build/root-common/config/servmgr/ne2k/cmd > create mode 100644 build/root-common/config/servmgr/ne2k/deps > create mode 100644 build/root-common/config/servmgr/nic/cmd > create mode 100644 build/root-common/config/servmgr/nic/conf > create mode 100644 build/root-common/config/servmgr/nic/deps > create mode 100644 build/root-common/config/servmgr/pcnet/cmd > create mode 100644 build/root-common/config/servmgr/pcnet/deps > create mode 100644 build/root-common/config/servmgr/sis900/cmd > create mode 100644 build/root-common/config/servmgr/sis900/deps > > diff --git a/build/root-common/config/servmgr/default/deps b/build/root-common/config/servmgr/default/deps > index e9898e5..ebdafbb 100644 > --- a/build/root-common/config/servmgr/default/deps > +++ b/build/root-common/config/servmgr/default/deps > @@ -2,5 +2,5 @@ getterm1 > getterm2 > getterm3 > getterm4 > -rtl8139 > +nic > mount > diff --git a/build/root-common/config/servmgr/e1000/cmd b/build/root-common/config/servmgr/e1000/cmd > new file mode 100644 > index 0000000..60952c6 > --- /dev/null > +++ b/build/root-common/config/servmgr/e1000/cmd > @@ -0,0 +1 @@ > +/modules/e1000 > diff --git a/build/root-common/config/servmgr/e1000/deps b/build/root-common/config/servmgr/e1000/deps > new file mode 100644 > index 0000000..7f5df2b > --- /dev/null > +++ b/build/root-common/config/servmgr/e1000/deps > @@ -0,0 +1,2 @@ > +pci > +tcpip > diff --git a/build/root-common/config/servmgr/ne2k/cmd b/build/root-common/config/servmgr/ne2k/cmd > new file mode 100644 > index 0000000..f4e866f > --- /dev/null > +++ b/build/root-common/config/servmgr/ne2k/cmd > @@ -0,0 +1 @@ > +/modules/ne2k > diff --git a/build/root-common/config/servmgr/ne2k/deps b/build/root-common/config/servmgr/ne2k/deps > new file mode 100644 > index 0000000..7f5df2b > --- /dev/null > +++ b/build/root-common/config/servmgr/ne2k/deps > @@ -0,0 +1,2 @@ > +pci > +tcpip > diff --git a/build/root-common/config/servmgr/nic/cmd b/build/root-common/config/servmgr/nic/cmd > new file mode 100644 > index 0000000..8b13789 > --- /dev/null > +++ b/build/root-common/config/servmgr/nic/cmd > @@ -0,0 +1 @@ > + Hm brauchst du hier wirklich eine leere Datei? Tuts nicht einfach auch keine? > diff --git a/build/root-common/config/servmgr/nic/conf b/build/root-common/config/servmgr/nic/conf > new file mode 100644 > index 0000000..2140a3b > --- /dev/null > +++ b/build/root-common/config/servmgr/nic/conf > @@ -0,0 +1 @@ > +nowait > diff --git a/build/root-common/config/servmgr/nic/deps b/build/root-common/config/servmgr/nic/deps > new file mode 100644 > index 0000000..27d043c > --- /dev/null > +++ b/build/root-common/config/servmgr/nic/deps > @@ -0,0 +1 @@ > +rtl8139 > diff --git a/build/root-common/config/servmgr/pcnet/cmd b/build/root-common/config/servmgr/pcnet/cmd > new file mode 100644 > index 0000000..254da69 > --- /dev/null > +++ b/build/root-common/config/servmgr/pcnet/cmd > @@ -0,0 +1 @@ > +/modules/pcnet > diff --git a/build/root-common/config/servmgr/pcnet/deps b/build/root-common/config/servmgr/pcnet/deps > new file mode 100644 > index 0000000..7f5df2b > --- /dev/null > +++ b/build/root-common/config/servmgr/pcnet/deps > @@ -0,0 +1,2 @@ > +pci > +tcpip > diff --git a/build/root-common/config/servmgr/sis900/cmd b/build/root-common/config/servmgr/sis900/cmd > new file mode 100644 > index 0000000..b123fe0 > --- /dev/null > +++ b/build/root-common/config/servmgr/sis900/cmd > @@ -0,0 +1 @@ > +/modules/sis900 > diff --git a/build/root-common/config/servmgr/sis900/deps b/build/root-common/config/servmgr/sis900/deps > new file mode 100644 > index 0000000..7f5df2b > --- /dev/null > +++ b/build/root-common/config/servmgr/sis900/deps > @@ -0,0 +1,2 @@ > +pci > +tcpip Sonst sieht das vernünftig aus. Acked-by: Antoine Kaufmann <toni@xxxxxxxxxx> -- Antoine Kaufmann <toni@xxxxxxxxxxxxxxxx>
Attachment:
pgpL7bx_2DpKW.pgp
Description: PGP signature