summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-09-03init: search for valid initmaximilian attems
Fixes bootfailure on bogus init bootarg too. Plus there may be a rootfs without init, but with sh.
2007-09-03init: s/i/conf/maximilian attems
i is a bad name for a conf, rename.
2007-09-01init: export noresume fo uswsusp and kdumpmaximilian attems
2007-09-01init-top/framebuffer: Check that fb minor is below 32.maximilian attems
you can only have up to 32 fb devices going from fb0 to fb31.
2007-09-01init: call panic if run-init failsmaximilian attems
2007-08-27mkinitramfs, hooks/keymap: add trailing slash to cp destionationmaximilian attems
just make sure we really copy into a dir and not a file.
2007-08-25scripts/local: small CodingStyle quote readonly variablemaximilian attems
2007-08-25mkinitramfs: kill kinit.shared toomaximilian attems
2007-08-25mkinitramfs: cope when no busybox is aroundmaximilian attems
only warn on cases where we know that busybox is needed.
2007-08-25debian/control: updatesmaximilian attems
* add vcs fields * mv busybox from depends to recommneds, as should be found in all but unusual installations * tighten dep on latest klibc
2007-08-25initramfs-tools: axe udev_helpermaximilian attems
2007-08-23release 0.90amaximilian attems
2007-08-23hook-functions: Add the new firewire modules.maximilian attems
2007-08-21init: Fix mount options invocation for klibc mount.maximilian attems
2007-08-16hook-functions factor out sys_walk_mod_add()maximilian attems
add it as a function of it's own
2007-08-16mkinitramfs: kick empty modules dirmaximilian attems
assume a s/ /\// was meant ;)
2007-08-15scripts/functions: simplify panic()maximilian attems
sleep can take arg 0
2007-08-09release 0.90maximilian attems
push out enough pending stuff.
2007-08-09update_initramfs tristate variable "all"maximilian attems
allow admin to set that an update-initramfs postinst call should update any known initramfs.
2007-08-09update-initramfs: enhance altered error message.maximilian attems
2007-08-08initramfs-tools.preinst: Inhibit resume var creation.maximilian attems
don't create /etc/initramfs-tools/conf.d/resume in chroot for debian-live and other custom debian distributions which build their systems in a chroot.
2007-08-08mkinitramfs.8: Document verbose mode.maximilian attems
Strange forgot about the interface almost as not seen in manpage..
2007-08-08scripts/funtions: run_scripts() on verbose mode add error messagesmaximilian attems
* add the error messages * fix double call to set_initlist * skip empty dirs at start
2007-08-08hook-functions rephrase slightly the MODULES=dep error conditionmaximilian attems
goal is to get the space down for lenny.
2007-08-08debian/script: add list of /sys/block on MODULES=depmaximilian attems
a find might be a bit to verbose, so be happy for now with a q&d list.
2007-08-08debian/scripts: Add /etc/crypttab to reportbug scriptmaximilian attems
a big share of bugreports concern encrypted usage, that output is useful for /etc/fstab parsing.
2007-08-08hook-functions: fix dep_add_modules() for lvm, md and luks rootmaximilian attems
a better shot and try for finding the underlying root devices in the case of MODULES=dep and /sys walk. dep_add_modules() should be splitted..
2007-08-07scripts/functions: style fix for maybe_break()maximilian attems
recover func from previous bogus change..
2007-08-07scripts/functions: Implement non-zero panic boot argmaximilian attems
sleep the passed time and then call reboot. works as arg can only be numeric.
2007-07-28hook-functions: Protect variables with local usageDavid Härdeman
bonus minor coding style cleanup
2007-07-28control: tighten dep on klibc-utilsmaximilian attems
we need the etch version at least, so bump.
2007-07-28copyright: old bzr tree gonemaximilian attems
kill dangling link. changes are imported into git.
2007-07-04scripts/local: make sure that fstype is always invokedmaximilian attems
2007-07-04hook-functions: fix Xen bootmaximilian attems
2007-07-04revert vol_id usage for now, when more matured this can be easily rechanged.maximilian attems
2007-06-21hook-functions: fix variable typomaximilian attems
2007-06-21mkinitramfs: add patch from joeyh fixing arm bootmaximilian attems
acked by aurel32: 11:07 <aurel32> maks: I ack the fact to always add libgcc to arm, init needs libgcc1 for _Unwind_* functions
2007-06-20mkinitramfs: on wrong MODULES setting fallback to mostmaximilian attems
this setting is known to be bootable, currently we would just create an unbootable initramfs. *bad*
2007-06-20scripts/local: add a q&d crude method to warn about renamed root devmaximilian attems
maybe this will reduce ration of bug reports, as further device renaming is in the pipes. :)
2007-06-20docs fix typosmaximilian attems
apply latest patches from bts.
2007-06-11scripts/local: use simpler fstype invocationmaximilian attems
compatible with etch released klibc
2007-05-30document ROOT hardcodingmaximilian attems
only indirectly referenced in mkinitramfs.8
2007-05-27hook-functions: make version check in check_minkver more robust.David Härdeman
2007-05-27scripts/nfs: fix when root-path includes server-ipmaximilian attems
2007-05-27scripts/init-premount/ps3: typo fixmaximilian attems
2007-05-27scripts/local: check for fs on rootnodeDavid Härdeman
some device node will exist before they can be safely used
2007-05-03hook-functions: add firmware loading supportDavid Härdeman
newer modinfo outputs firmware files corresponding to the modules MODULE_FIRMWARE() field. Take care to add them automaticaly.
2007-05-02mkinitramfs: old linux-image interfaces deprecate themmaximilian attems
as they should get scrapped next release (keep them for backports.org and friends)
2007-05-01init: ignore non-numeric rootdelay, panic bootargsmaximilian attems
they cause funny sleep error messages: aka you can't sleep "bar" time ;) take into account that subsecond sleeps are ok. thanks david for the idea, gone for the q&d regex check.
2007-05-01hook-funtions: copy_exec workDavid Härdeman
* Change copy_exec to use the same source and destination path if only one argument is given. * document how copy_exec determines the target path. This also fixes a minor bug, these two commands: copy_exec /some/thing /thing copy_exec /some/other/thing /thing Would previously print (note the incorrect path): W:copy_exec: Not copying /some/other/thing to $DESTDIR/thing/thing...