diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | debian/pbuilder-uml.files | 2 | ||||
-rw-r--r-- | pbuilder-uml.conf | 11 |
3 files changed, 12 insertions, 5 deletions
@@ -1,5 +1,9 @@ 2002-09-18 Junichi Uekawa <dancer@debian.org> + * pbuilder-uml.conf: change configuration file so that it is more generic. + + * debian/pbuilder-uml.files: add more files to be moved over to pbuilder-uml package. + * pbuilder-user-mode-linux: change the filenames to pbuilder.conf pbuilder-uml.conf * pbuilder-user-mode-linux.1: document config files. diff --git a/debian/pbuilder-uml.files b/debian/pbuilder-uml.files index a303953..229871f 100644 --- a/debian/pbuilder-uml.files +++ b/debian/pbuilder-uml.files @@ -1 +1,3 @@ +etc/pbuilder/pbuilder-uml.conf +usr/share/pbuilder/pbuilder-uml.conf usr/bin/pbuilder-user-mode-linux
\ No newline at end of file diff --git a/pbuilder-uml.conf b/pbuilder-uml.conf index a2ea5dc..9b0377d 100644 --- a/pbuilder-uml.conf +++ b/pbuilder-uml.conf @@ -1,8 +1,9 @@ -MY_ETH0=tuntap,,,192.168.30.62 -UML_IP=192.168.30.199 +MY_ETH0=tuntap,,,192.168.0.2 +UML_IP=192.168.0.3 UML_NETMASK=255.255.255.0 -UML_NETWORK=192.168.30.0 +UML_NETWORK=192.168.0.0 UML_BROADCAST=255.255.255.255 -UML_GATEWAY=192.168.30.1 -PBUILDER_UML_IMAGE="/tmp/uml" +UML_GATEWAY=192.168.0.1 +PBUILDER_UML_IMAGE="${HOME}/uml-image" UML_MOUNT_TMPFS="no" + |