diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-10-29 21:58:07 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-10-29 21:58:07 +0000 |
commit | c4e8411032b99f7f1366db1d50ae352d456140ec (patch) | |
tree | bbcd28cea901c4a191b3b6349decb73960700d9a /base-files | |
parent | 3bea931eb63e93c0e0f05e03b3a7291840a184fa (diff) |
Merge bk://openembedded.bkbits.net/packages
into r2d2.tm.informatik.uni-frankfurt.de:/local/pkg/oe/packages
2004/10/29 14:18:16-05:00 thegrantclan.org!jgrant
fix typo and create resolv.conf in base-files
2004/10/29 14:03:14-05:00 thegrantclan.org!jgrant
Keymaping additions for tosa in qte.
2004/10/29 11:43:46-05:00 thegrantclan.org!jgrant
Changes based on Murray Jensen's patchs sent to the oe mailing list. Mostly hotplug fixes and location of init scripts.
BKrev: 4182bcefIQKf4dZo5GWM-5QhxcjYcQ
Diffstat (limited to 'base-files')
-rw-r--r-- | base-files/base-files_3.0.14.oe | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/base-files/base-files_3.0.14.oe b/base-files/base-files_3.0.14.oe index 26cfa0f6e2..f00f9cb203 100644 --- a/base-files/base-files_3.0.14.oe +++ b/base-files/base-files_3.0.14.oe @@ -56,7 +56,7 @@ do_install () { install -m 2755 -d ${D}/$d done - if [ -n "${MACHINE}" -a "${hostname}" == "openembedded" ]; then + if [ -n "${MACHINE}" -a "${hostname}" = "openembedded" ]; then echo ${MACHINE} > ${D}/${sysconfdir}/hostname else echo ${hostname} > ${D}/${sysconfdir}/hostname @@ -106,6 +106,7 @@ do_install () { echo ">/var/log/wtmp" >> ${D}/etc/init.d/populate-var.sh echo ">/var/log/lastlog" >> ${D}/etc/init.d/populate-var.sh echo "chmod 0664 /var/run/utmp /var/log/wtmp /var/log/lastlog" >> ${D}/etc/init.d/populate-var.sh + echo "touch /var/run/resolv.conf" >> ${D}/etc/init.d/populate-var.sh # rmdir ${D}/var/* chmod 0755 ${D}/${sysconfdir}/init.d/populate-var.sh |