aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordancer <dancer>2003-08-04 21:27:14 +0000
committerdancer <dancer>2003-08-04 21:27:14 +0000
commitc43a4f2b7fd890534d5dc464519ee00651719451 (patch)
tree044046b6bfaf86a3f00a7348b72e89e2d4f55f0e
parent45a4b5ec8de168b4e7c7fe5cb06167509b2c6bc3 (diff)
downloadpbuilder-c43a4f2b7fd890534d5dc464519ee00651719451.tar
pbuilder-c43a4f2b7fd890534d5dc464519ee00651719451.tar.gz
+2003-08-05 Junichi Uekawa <dancer@debian.org>
+ + * pbuilder-user-mode-linux: add 'rw' option to linux invocation to mount + / read-write.
-rw-r--r--ChangeLog5
-rw-r--r--debian/changelog7
-rwxr-xr-xpbuilder-user-mode-linux4
3 files changed, 12 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 9d4121d..4fa58ec 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-05 Junichi Uekawa <dancer@debian.org>
+
+ * pbuilder-user-mode-linux: add 'rw' option to linux invocation to mount
+ / read-write.
+
2003-08-01 Junichi Uekawa <dancer@debian.org>
* pbuilder-user-mode-linux (UML_EXITCODE): remove |lv from pipe,
diff --git a/debian/changelog b/debian/changelog
index 5c6346c..0c89f10 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,9 +1,12 @@
-pbuilder (0.79) UNRELEASED; urgency=low
+pbuilder (0.79) unstable; urgency=low
* Remove reference to lv from source code, it was only for debugging
purposes. (closes: #203732)
+ * Mount / rw for user-mode-linux.
+ From: Daniel Schepler <schepler@math.berkeley.edu>
+ (closes: #203730): pbuilder-uml: apt cache is read-only
- -- Junichi Uekawa <dancer@debian.org> Fri, 1 Aug 2003 19:55:58 +0900
+ -- Junichi Uekawa <dancer@debian.org> Tue, 5 Aug 2003 06:26:31 +0900
pbuilder (0.78) unstable; urgency=low
diff --git a/pbuilder-user-mode-linux b/pbuilder-user-mode-linux
index 9b417da..461483e 100755
--- a/pbuilder-user-mode-linux
+++ b/pbuilder-user-mode-linux
@@ -121,8 +121,8 @@ EOF
chmod a+x ${INSIDE_PBUILDER}
- echo Invoking: "linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=${PBUILDER_COW}${PBUILDER_UML_IMAGE} devfs=mount init=${INSIDE_PBUILDER}"
- if linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1="${PBUILDER_COW}${PBUILDER_UML_IMAGE}" devfs=mount init=${INSIDE_PBUILDER} ; then
+ echo Invoking: "linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1=${PBUILDER_COW}${PBUILDER_UML_IMAGE} devfs=mount init=${INSIDE_PBUILDER} rw"
+ if linux mem=${UML_MEM} eth0=${MY_ETH0} con0=fd:0,fd:1 con=pty root=/dev/root rootflags=/ rootfstype=hostfs ubd1="${PBUILDER_COW}${PBUILDER_UML_IMAGE}" devfs=mount init=${INSIDE_PBUILDER} rw ; then
UML_EXITCODE=$?
echo " -> Successful exit from user-mode linux"
else