mirror of
https://salsa.debian.org/kernel-team/initramfs-tools.git
synced 2026-01-26 15:39:08 +00:00
code cleanup: drop trailing whitespaces.
Signed-off-by: Michael Prokop <mika@debian.org>
This commit is contained in:
parent
2a8c9907b1
commit
60afd2a944
@ -1,4 +1,4 @@
|
||||
#
|
||||
#
|
||||
# Configuration file for update-initramfs(8)
|
||||
#
|
||||
|
||||
|
||||
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -247,7 +247,7 @@ initramfs-tools (0.93.4) unstable; urgency=medium
|
||||
* initramfs-tools.8: Convert hyphen to minus sign.
|
||||
* control: bump versioned dep on debhelper.
|
||||
* control: bump standards version without changes.
|
||||
* hook-functions: Fix loading of entries without newline in
|
||||
* hook-functions: Fix loading of entries without newline in
|
||||
/etc/initramfs-tools/modules. (closes: #532745)
|
||||
* MODULES=most: Add virtio_net to initramfs. (closes: #533894)
|
||||
|
||||
@ -537,7 +537,7 @@ initramfs-tools (0.92d) unstable; urgency=low
|
||||
each message.
|
||||
- initramfs-tools.preinst: Try to use UUID for resume device.
|
||||
- add boot script loading ide-generic on all_generic_ide cmdline.
|
||||
Thanks Frans Pop <elendil@planet.nl> for report. (closes: #485786)
|
||||
Thanks Frans Pop <elendil@planet.nl> for report. (closes: #485786)
|
||||
* init: add possible mountroot break (closes: #488963)
|
||||
* initramfs-tools.8: document UUID usage for root and all_generic_ide.
|
||||
(closes: #489186)
|
||||
@ -744,7 +744,7 @@ initramfs-tools (0.90) unstable; urgency=low
|
||||
-- maximilian attems <maks@debian.org> Thu, 09 Aug 2007 21:30:29 +0200
|
||||
|
||||
initramfs-tools (0.89) unstable; urgency=low
|
||||
|
||||
|
||||
Release "L'\xE9lecteur c'est notoire N'a pas tout' sa raison"
|
||||
|
||||
[ Joey Hess ]
|
||||
|
||||
2
debian/copyright
vendored
2
debian/copyright
vendored
@ -13,7 +13,7 @@ http://git.debian.org/?p=kernel/initramfs-tools.git;a=shortlog
|
||||
Authors: Adam Conrad <adconrad@ubuntu.com>,
|
||||
Ben Collins <bcollins@ubuntu.com>,
|
||||
David Härdeman <david@hardeman.nu>,
|
||||
Jeff Bailey <jbailey@ubuntu.com>,
|
||||
Jeff Bailey <jbailey@ubuntu.com>,
|
||||
maximilian attems <maks@debian.org>,
|
||||
Scott James Remnant <scott@ubuntu.com>
|
||||
|
||||
|
||||
@ -12,7 +12,7 @@
|
||||
# command line.
|
||||
#
|
||||
# DESTDIR -- The staging directory where we are building the image.
|
||||
#
|
||||
#
|
||||
# see initramfs-tools(8)
|
||||
|
||||
#
|
||||
|
||||
@ -183,7 +183,7 @@ sys_walk_mod_add()
|
||||
{
|
||||
local driver_path module
|
||||
device_path="$1"
|
||||
|
||||
|
||||
while [ "${device_path}" != "/sys" ]; do
|
||||
sys_walk_modalias ${device_path}
|
||||
driver_path="$(readlink -f ${device_path}/driver/module)"
|
||||
|
||||
6
init
6
init
@ -8,8 +8,8 @@ echo "Loading, please wait..."
|
||||
[ -d /proc ] || mkdir /proc
|
||||
[ -d /tmp ] || mkdir /tmp
|
||||
mkdir -p /var/lock
|
||||
mount -t sysfs -o nodev,noexec,nosuid none /sys
|
||||
mount -t proc -o nodev,noexec,nosuid none /proc
|
||||
mount -t sysfs -o nodev,noexec,nosuid none /sys
|
||||
mount -t proc -o nodev,noexec,nosuid none /proc
|
||||
|
||||
# Note that this only becomes /dev on the real filesystem if udev's scripts
|
||||
# are used; which they will be, but it's worth pointing out
|
||||
@ -184,7 +184,7 @@ done
|
||||
if [ -n "${noresume}" ]; then
|
||||
export noresume
|
||||
unset resume
|
||||
else
|
||||
else
|
||||
resume=${RESUME:-}
|
||||
fi
|
||||
|
||||
|
||||
@ -48,12 +48,12 @@ The keymap will anyway be loaded by the initscripts later, and the packages
|
||||
that might need input will normally set this variable automatically, so there
|
||||
should normally be no need to set this.
|
||||
|
||||
.TP
|
||||
\fB COMPRESS
|
||||
Specifies the compression method used for the initramfs image.
|
||||
.B mkinitramfs
|
||||
will default to gzip if the kernel lacks support (CONFIG_RD) or the
|
||||
corresponding userspace utility is not present.
|
||||
.TP
|
||||
\fB COMPRESS
|
||||
Specifies the compression method used for the initramfs image.
|
||||
.B mkinitramfs
|
||||
will default to gzip if the kernel lacks support (CONFIG_RD) or the
|
||||
corresponding userspace utility is not present.
|
||||
|
||||
.TP
|
||||
\fB UMASK
|
||||
|
||||
@ -315,7 +315,7 @@ exec 3>&1
|
||||
eval `
|
||||
# http://cfaj.freeshell.org/shell/cus-faq-2.html
|
||||
exec 4>&1 >&3 3>&-
|
||||
cd "${DESTDIR}"
|
||||
cd "${DESTDIR}"
|
||||
{
|
||||
find . 4>&-; echo "ec1=$?;" >&4
|
||||
} | {
|
||||
|
||||
@ -218,7 +218,7 @@ run_scripts()
|
||||
{
|
||||
initdir=${1}
|
||||
[ ! -d ${initdir} ] && return
|
||||
|
||||
|
||||
if [ -f ${initdir}/ORDER ]; then
|
||||
. ${initdir}/ORDER
|
||||
elif command -v tsort >/dev/null 2>&1; then
|
||||
|
||||
@ -50,7 +50,7 @@ pre_mountroot()
|
||||
# We've given up, but we'll let the user fix matters if they can
|
||||
while [ ! -e "${ROOT}" ]; do
|
||||
# give hint about renamed root
|
||||
case "${ROOT}" in
|
||||
case "${ROOT}" in
|
||||
/dev/hd*)
|
||||
suffix="${ROOT#/dev/hd}"
|
||||
major="${suffix%[[:digit:]]}"
|
||||
|
||||
@ -4,7 +4,7 @@
|
||||
|
||||
retry_nr=0
|
||||
|
||||
# parse nfs bootargs and mount nfs
|
||||
# parse nfs bootargs and mount nfs
|
||||
do_nfsmount()
|
||||
{
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user