summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2007-05-01implement the soft reset of the hardware according to section 3.5.6 ofReyk Floeter
the doc).
2007-05-01use strtonum; ok millert@Jason Dixon
2007-04-30better handling of the firmware state madnessReyk Floeter
2007-04-30fix shift by portReyk Floeter
2007-04-30run the nx_tick function every second to check the link state, even ifReyk Floeter
the interface is down.
2007-04-30read the per-port link stateReyk Floeter
2007-04-30initial code for firmware loading and initialization. it is used byReyk Floeter
the reset function and will be used later to load an alternative/updated firmware image and bootloader from disk if the images from the flash are not supported by the driver.
2007-04-30document "option FFS2"; ok pedroJason McIntyre
2007-04-30Enable FFS2, okay deraadt@Pedro Martelletto
2007-04-30Enable QUEUE_MACRO_DEBUG on DIAGNOSTIC kernels.Pedro Martelletto
Input and okays from krw@, millert@, otto@, deraadt@, miod@.
2007-04-30ffs2 support for reading df data directly from device; ok millert@ pedro@Otto Moerbeek
2007-04-30check for exit string earlierTheo de Raadt
2007-04-30support "exit" like sparc64 does; ok miodTheo de Raadt
2007-04-30use boot(RB_USERREQ | RB_HALT) to get back to the prom instead ofTheo de Raadt
special openfirmware calls; discussed with miod
2007-04-30support "exit" as a RB_ASKNAME choice; discussed with miodTheo de Raadt
2007-04-30- checkout from a read-only repository implies -l.Xavier Santolaria
- -V and -Q are mutually exclusive, -Q takes precedence if both are specified though. initial diff from Tobias Stoeckmann, tweaks by jmc@.
2007-04-30don't bother trying to substitute if there's no $ in the string.Marc Espie
According to perl's profiler, this actually accounts for *most* of the user time of pkg_create...
2007-04-30add missing newline in printfReyk Floeter
2007-04-30simplify regen mode logic: if we don't add anything to the packing-list,Marc Espie
we never have to check we added nothing. so, process -P/-W in two steps: stash we've seen them first, and add them later. As a benefit, sort/unify them once, so that we can stash them correctly directly.
2007-04-30make creation of special files more obvious.Marc Espie
2007-04-30All options that add special files follow the same pattern, so reuse theMarc Espie
same code.
2007-04-30Better error messages.Claudio Jeker
2007-04-30Fix prepare_for_archival().Bernd Ahlers
2007-04-30special mode `pretend_to_archive' for -n, which does most things exceptMarc Espie
writing the package itself (includes mode verifications).
2007-04-30Fix a bad check in aspath_inflate() -- compare with the correct loop value.Claudio Jeker
2007-04-30archive special files exactly like we archive normal files. This providesMarc Espie
for more checks in very fishy cases (like if we end up with /var/db belonging to the wrong person).
2007-04-30decrease the delay in the register wait loop again and add a debugReyk Floeter
message to print the number of loops.
2007-04-30split preparation and check into prepare_item.Marc Espie
2007-04-30move the firmware validation to a mountroot hook to allow loading ofReyk Floeter
an alternative firmware image from disk (not yet implemented). this also minimizes the additional delay to wait for the firmware to become ready because the firmware bootstrap is triggered in the attach function and the state is polled later in the mountroot hook.
2007-04-30unsimplify checksum creation, fix @link markers.Marc Espie
found out by bernd@
2007-04-30allow pkg_create to regen on a dirname, supply +CONTENTS automaticallyMarc Espie
2007-04-30reorg main code to separate regeneration case better.Marc Espie
2007-04-30add items based on options, not on file existence.Marc Espie
2007-04-30fold checksumming code for special files. As a bonus, we now check md5Marc Espie
on package regeneration
2007-04-30slight code reorg, no changes.Marc Espie
2007-04-30use more descriptive name (dir -> infodir) and pass it along to checksummingMarc Espie
capabilities (to be able to fold special files case in later)
2007-04-30move checksumming capabilities into base classMarc Espie
2007-04-30tweak args to compute_checksum slightly, pass it the explicit file nameMarc Espie
we want to check.
2007-04-30stop looking at plist's internals during makesum, simply copy the objectsMarc Espie
over to the new plist using add_object for all objects.
2007-04-30add most things concerning @ignore, since we now have ways nicer to doMarc Espie
things. We still recognize @ignore in packing-lists for now, but we don't handle it. Not that register-plist has smart enough comparison functions that it doesn't care about @ignore at all...
2007-04-30make usage() __dead; from Tobias Stoeckmann.Xavier Santolaria
2007-04-30missing header; from Tobias Stoeckmann.Xavier Santolaria
2007-04-30Fix dmesg nit.Miod Vallat
2007-04-30';;' doesnt work on older gcc..Todd T. Fries
i.e. my sparc and vax and m68k couldn't build this problem found by me, fix by pedro ok marco@
2007-04-30aggressive spelling fix, spotted by jbgTheo de Raadt
2007-04-30Replace another expansion of DISKLABELDEV with the define itself.Kenneth R Westerback
2007-04-30HDUNIT/etc -> DISKUNIT/etc. No functional change.Kenneth R Westerback
"Looks right" millert@ "toss 'em in" deraadt@
2007-04-30fix dmesg; ok dlgTheo de Raadt
2007-04-29MCDUNIT/etc -> DISKUNIT/etc. No change to mcd.o.Kenneth R Westerback
2007-04-29missing arguments in a couple of printfs.David Gwynne
patch from Tim van der Molen