OLD | NEW |
(Empty) | |
| 1 #!/bin/bash |
| 2 |
| 3 # Copyright (c) 2009 The Chromium OS Authors. All rights reserved. |
| 4 # Use of this source code is governed by a BSD-style license that can be |
| 5 # found in the LICENSE file. |
| 6 |
| 7 # base-files |
| 8 |
| 9 cp -a "${ROOT}/usr/share/base-files/networks" \ |
| 10 "${ROOT}/usr/share/base-files/nsswitch.conf" \ |
| 11 "${ROOT}/usr/share/base-files/profile" \ |
| 12 "${ROOT}/etc/" |
| 13 |
| 14 # TODO: Does this belong here or in another postinst? |
| 15 touch "${ROOT}/etc/fstab" |
| 16 |
| 17 # TODO:This is needed by stuff that uses sysv-rc. Maybe move there? |
| 18 mkdir -p "${ROOT_FS_DIR}/etc/init.d" |
OLD | NEW |