summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Bowler <jbowler@nslu2-linux.org>2005-07-18 19:47:57 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2005-07-18 19:47:57 +0000
commit8fa33a74e5e03da530dc306e5ca43a417d4c4998 (patch)
tree1a3dc572961826c526eda936544acc7369d1d594
parent7279d75be5455744430a3126ab800062375b38bf (diff)
slugbug 205
Ensure that /home/root still exists, even though the root home directory is /root because install passwd files are not typically overwritten on upgrade and, without this, it may be impossible to log in to the system. PR bumped, but this only affects openslug
-rw-r--r--packages/base-files/base-files_3.0.14.bb3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/base-files/base-files_3.0.14.bb b/packages/base-files/base-files_3.0.14.bb
index d546ed5c09..ec58e08bef 100644
--- a/packages/base-files/base-files_3.0.14.bb
+++ b/packages/base-files/base-files_3.0.14.bb
@@ -1,7 +1,7 @@
DESCRIPTION = "Miscellaneous files for the base system."
SECTION = "base"
PRIORITY = "required"
-PR = "r37"
+PR = "r38"
LICENSE = "GPL"
SRC_URI = " \
@@ -126,6 +126,7 @@ do_install_append_openslug() {
rm -r ${D}/mnt/*
rmdir ${D}/home/root
install -m 0755 -d ${D}/root
+ ln -s ../root ${D}/home/root
}
PACKAGES = "${PN}-doc ${PN}"