Link [ NetBSD | NetBSD OpenGrok source search | PR fulltext-search | Summary of daily snapshot builds | history of daily build result | pkgsrc commit viewer ]


   
        usage: [branch:branch] [user:user] [path@revision] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN sys/arch/arm, if_wm.c@1.234 )




switch to index mode

recent branches: MAIN (3h)  netbsd-8 (5d)  netbsd-10 (6d)  netbsd-9 (12d)  thorpej-ifq (176d)  thorpej-altq-separation (178d) 

2024-05-10 18:19:50 UTC Now

2014-10-03 11:40:55 UTC MAIN commitmail json YAML

Introduce RPI_HWCURSOR and default to off. The existing code causes
problems with vchiq at the moment.

(skrll)

2014-10-03 11:23:29 UTC MAIN commitmail json YAML

Use SDn_CLK_REG instead of MMC_CLKCR to setup bus clock; gives a nearly 2x boost in performance in HS mode. Also, make sure to setup PLL6 before probing clocks.

(jmcneill)

2014-10-03 11:21:56 UTC MAIN commitmail json YAML

add some more bit definitions

(jmcneill)

2014-10-03 11:05:36 UTC MAIN commitmail json YAML

Convert to USB_HIST.

From Takahiro HAYASHI with tweaks from me.

(skrll)

2014-10-03 06:46:02 UTC MAIN commitmail json YAML

Remove unneeded #include

(skrll)

2014-10-03 00:51:31 UTC MAIN commitmail json YAML

2014-10-03 00:00:11 UTC MAIN commitmail json YAML

Use uint32_t for blocksize as per other uses and to fix warnings

(justin)

2014-10-02 23:07:30 UTC MAIN commitmail json YAML

Work around pedantic compiler

(justin)

2014-10-02 22:05:39 UTC MAIN commitmail json YAML

Use devmajor_t not int

(justin)

2014-10-02 21:58:16 UTC MAIN commitmail json YAML

dm_target_t reference count is modified with atomic_{inc,dec}_32 so should
be uint_32_t not int

(justin)

2014-10-02 21:49:22 UTC MAIN commitmail json YAML

debug ld_sdmmc with LD_SDMMC_DEBUG instead of SDMMC_DEBUG

(jmcneill)

2014-10-02 21:36:37 UTC MAIN commitmail json YAML

Imported and adapted from FreeBSD svn r272166 and r272207; this fixes
false positives for products of primes larger than 2^16. For example,
before this commit:

  $ /usr/games/primes 4295360521 4295360522
  4295360521
but
  $ /usr/games/factor 4295360521
  4295360521: 65539 65539

or
  $ /usr/games/primes 3825123056546413049 3825123056546413050
  3825123056546413049
yet
  $ /usr/games/factor 3825123056546413049
  3825123056546413049: 165479 23115459100831

or
  $ /usr/games/primes 18446744073709551577
  18446744073709551577
although
  $ /usr/games/factor 18446744073709551577
  18446744073709551577: 139646831 132095686967

Incidentally, the above examples show the smallest and largest cases that
were erroneously stated as prime in the range 2^32 .. 3825123056546413049
.. 2^64; the primes(6) program now stops at 3825123056546413050 as
primality tests on larger integers would be by brute force factorization.

In addition, special to the NetBSD version:
. for -d option, skip first difference when start is >65537 as it is incorrect
. corrected usage to mention both the existing -d as well as the new -h option

For original FreeBSD commit message by Colin Percival, see:
http://svnweb.freebsd.org/base?view=revision&revision=272166

(ast)

2014-10-02 21:29:44 UTC MAIN commitmail json YAML

Call prop_dictionary_get_uint32 with uint32_t

(justin)

2014-10-02 21:27:41 UTC MAIN commitmail json YAML

include <sys/endian.h> for both the non-tools build,
and the tools build on a host where the file exists.

Fixes a build problem on FreeBSD, reported by Herbert J. Skuhra, where
tools/compat's configure detected that be32dec() and friends were
available in the host's <sys/endian.h>, so tools/compat did not provide
its own versions.

(apb)

2014-10-02 21:01:38 UTC MAIN commitmail json YAML

2014-10-02 19:15:21 UTC MAIN commitmail json YAML

2014-10-02 18:16:13 UTC MAIN commitmail json YAML

Be a bit more verbose about errors, also pass through error code
from lower layer like other drivers.

(mlelstv)

2014-10-02 18:14:38 UTC MAIN commitmail json YAML

Fix divisor calculation for SDHC 3.0.
1/1  -> 0
1/2  -> 1
1/4  -> 2
...
1/2*N -> N

(mlelstv)

2014-10-02 16:17:33 UTC MAIN commitmail json YAML

Fix reinoud-ification of KPLL offset.

(skrll)

2014-10-02 14:43:59 UTC netbsd-7 commitmail json YAML

2014-10-02 14:42:53 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #124):
sys/dev/sdmmc/sdhc.c: revision 1.49
Correct clk div calculation for SD 3.0 controllers.

(martin)

2014-10-02 12:42:12 UTC MAIN commitmail json YAML

Don't kdassert about crap provided by the firmware.

(riastradh)

2014-10-02 12:25:15 UTC MAIN commitmail json YAML

trinity_dpm.c needs -Wno-unused-const-variable.

(riastradh)

2014-10-02 12:18:26 UTC MAIN commitmail json YAML

Ifdef out another nonsensical comparison.

(riastradh)

2014-10-02 12:17:59 UTC MAIN commitmail json YAML

si_dpm.c needs -Wno-unused-const-variable.

(riastradh)

2014-10-02 12:12:55 UTC MAIN commitmail json YAML

2014-10-02 11:58:12 UTC MAIN commitmail json YAML

Ensure correctness of bus_dmamap_sync operations. Shouldn't affect RPI.

(skrll)

2014-10-02 11:39:45 UTC MAIN commitmail json YAML

2014-10-02 11:27:09 UTC MAIN commitmail json YAML

Add KPLL for Exynos5 and EPLL is called DPLL on the 5410 :-/

(reinoud)

2014-10-02 11:17:50 UTC MAIN commitmail json YAML

Disable maximum frequency setting for exynos5

While here add more known frequency settings for exynos4. They are currently
disabled since derived clocks are not adjusted.

(reinoud)

2014-10-02 11:15:07 UTC MAIN commitmail json YAML

rv770_dpm.c needs -Wno-missing-field-initializers.

(riastradh)

2014-10-02 11:09:07 UTC MAIN commitmail json YAML

We don't use radeon_(un)register_atpx_handler at the moment.

(riastradh)

2014-10-02 10:56:09 UTC MAIN commitmail json YAML

Spell -Wno-missing-prototypes correctly.

(riastradh)

2014-10-02 10:17:53 UTC MAIN commitmail json YAML

-Wno-unused-const-variable for radeon kv_dpm.c.

(riastradh)

2014-10-02 09:18:44 UTC MAIN commitmail json YAML

Updates for active and inactive release branches,
from PR 49127 by J. Lewis Muir.

(apb)

2014-10-02 09:03:43 UTC MAIN commitmail json YAML

Fix reinoud-ification.

My odroid-xu has console again.

(skrll)

2014-10-02 06:56:36 UTC MAIN commitmail json YAML

Give \(ua its own comment, so it's not listed under daggers.

(apb)

2014-10-02 03:58:48 UTC MAIN commitmail json YAML

2014-10-02 00:02:03 UTC MAIN commitmail json YAML

2014-10-01 23:41:41 UTC MAIN commitmail json YAML

2014-10-01 22:44:03 UTC MAIN commitmail json YAML

When building with clang, use the C++11 feature for explicit template
specialisation.

(joerg)

2014-10-01 22:27:33 UTC MAIN commitmail json YAML

Explicitly request using the libstdc++ header path for clang, C++11 for
everything and disable the unsupported ABI tagging.

(joerg)

2014-10-01 22:26:05 UTC MAIN commitmail json YAML

Building random.cc with clang requires -mrdrnd on x86.

(joerg)

2014-10-01 22:18:19 UTC MAIN commitmail json YAML

Attribute target is not supported by clang, so don't use it.
Explicitly mark this function as non-inline to not defeat the feature
tests.

(joerg)

2014-10-01 21:14:58 UTC MAIN commitmail json YAML

SDHC_MAX_BLK_LEN_1024 needs to be shifted into caps reg

(jmcneill)

2014-10-01 21:06:21 UTC MAIN commitmail json YAML

oops, SDHC_FLAG_NO_HS_BIT is still required

(jmcneill)

2014-10-01 21:00:16 UTC MAIN commitmail json YAML

SDHC_FLAG_NO_HS_BIT should no longer be needed

(jmcneill)

2014-10-01 20:59:37 UTC MAIN commitmail json YAML

correct clk div calculation for SD 3.0 controllers

(jmcneill)

2014-10-01 14:12:29 UTC MAIN commitmail json YAML

remove extra space I accidentally added.

(christos)

2014-10-01 13:53:04 UTC MAIN commitmail json YAML

include "nbtool_config.h", not "nbtools_config.h".

(apb)

2014-10-01 13:31:27 UTC MAIN commitmail json YAML

turn off hardware cursor while blanking screen.

(mlelstv)

2014-10-01 13:30:18 UTC MAIN commitmail json YAML

make board/firmware revisions visible via sysctl

(mlelstv)

2014-10-01 12:55:41 UTC MAIN commitmail json YAML

It's HAVE_NBTOOL_CONFIG_H, not HAVE_NBTOOLS_CONFIG_H

(apb)

2014-10-01 12:55:39 UTC MAIN commitmail json YAML

It's HAVE_NBTOOL_CONFIG_H, not HAVE_NBTOOLS_CONFIG_H

(apb)

2014-10-01 12:33:22 UTC MAIN commitmail json YAML

2014-10-01 12:08:04 UTC MAIN commitmail json YAML

the flags for WSDISPLAYIO_SCURSOR have prefix WSDISPLAY_, not WSDISPLAYIO_.

(mlelstv)

2014-10-01 09:56:39 UTC MAIN commitmail json YAML

do not try to extend the font-pattern with a wild-card. This will almost
always select the wrong fontset and use wrong metrics.

(mlelstv)

2014-10-01 09:30:58 UTC MAIN commitmail json YAML

2014-10-01 08:54:47 UTC netbsd-7 commitmail json YAML

2014-10-01 08:53:43 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #123):
sys/dev/sdmmc/sdhc.c: revision 1.48
Don't check slot type for pre-3.0 controllers, the bits were reserved at
the time. If an older controller advertises 1.8V support, just use it.
This fixes high-speed mode support for me on BeagleBone Black.

(martin)

2014-10-01 08:37:48 UTC MAIN commitmail json YAML

Add Intel Atom Z36xx and Z37xx devices from the datasheet.

(msaitoh)

2014-10-01 03:52:42 UTC MAIN commitmail json YAML

oops, forgot to update end of data area

(jnemeth)

2014-10-01 01:11:39 UTC MAIN commitmail json YAML

apply the roman numeral page number fix from psd/Title

(christos)

2014-10-01 01:08:25 UTC MAIN commitmail json YAML

using random values for hdr->hdr_guid does not work very well

(jnemeth)

2014-10-01 01:07:24 UTC MAIN commitmail json YAML

actually return the uuid when parsing one that is in numeric format

(jnemeth)

2014-10-01 01:03:47 UTC MAIN commitmail json YAML

Don't use ".af % i" to print page numbers with roman numerals, define a
different register instead so that macros that depend on % being numeric
don't break. From uwe

(christos)

2014-10-01 00:48:14 UTC MAIN commitmail json YAML

explain what's going on with all the spurious errors.

(christos)

2014-10-01 00:25:43 UTC MAIN commitmail json YAML

Don't check slot type for pre-3.0 controllers, the bits were reserved at
the time. If an older controller advertises 1.8V support, just use it.
This fixes high-speed mode support for me on BeagleBone Black.

(jmcneill)

2014-09-30 23:32:52 UTC MAIN commitmail json YAML

2014-09-30 23:30:48 UTC MAIN commitmail json YAML

remove extra tab that broke the table.

(christos)

2014-09-30 23:28:54 UTC MAIN commitmail json YAML

add some more font and character definitions for poor man's ascii.

(christos)

2014-09-30 22:56:36 UTC MAIN commitmail json YAML

correctly show partition type in the new world order

(jnemeth)

2014-09-30 21:33:14 UTC MAIN commitmail json YAML

Define some of the missing macros. The only error now is:

    213: warning: can't find font `C'

Because the CW macro wants to use a constant width font is "ascii" mode,
and this does not exist with -Tascii. I don't think this should be fixed
here...

(christos)

2014-09-30 20:54:11 UTC MAIN commitmail json YAML

There is no \(ua in roff, you really mean \(ha (Circumflex-Accent) aka ^

(christos)

2014-09-30 20:46:59 UTC MAIN commitmail json YAML

adhere to stricter groff checking:
- don't specify distance separation between this and the next column for
  the last column, since there's no next column.
- don't pop environment you did not push

(christos)

2014-09-30 20:23:23 UTC MAIN commitmail json YAML

Check size of correct buffer.  Note, just being pedantic as the buffer
being checked is the same size as the one that should have been checked.

(jnemeth)

2014-09-30 19:38:25 UTC MAIN commitmail json YAML

2014-09-30 18:23:20 UTC netbsd-7 commitmail json YAML

Mention 121, 122 and update to 67.

(martin)

2014-09-30 18:21:40 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by christos in ticket #122):
lib/libc/stdio/printf.3: revision 1.64
lib/libc/stdio/vsnprintf.c: revision 1.28
lib/libc/stdio/vsnprintf_ss.c: revision 1.13
Return EOVERFLOW like FreeBSD does if the buffer size exceeds INT_MAX
(well FreeBSD documents INT_MAX + 1, but in the code it is INT_MAX).

(martin)

2014-09-30 18:19:18 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #121):
distrib/utils/embedded/conf/beagleboard.conf: revision 1.18
Escape $ in $board so this will boot on beaglebone too.

(martin)

2014-09-30 18:14:22 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by hannken in ticket #67):
sys/fs/puffs/puffs_node.c: revision 1.34
sys/fs/puffs/puffs_vnops.c: revision 1.187
Fix the puffs_sop_thread -> puffs_cookie2vnode path:
- pass the cookie by reference
- add missing mutex_exit()
- update assertion for VNON typed vnodes

(martin)

2014-09-30 18:13:29 UTC MAIN commitmail json YAML

add vcprop_subr.c, should have went with previous commit :/

(macallan)

2014-09-30 18:00:28 UTC MAIN commitmail json YAML

2014-09-30 18:00:00 UTC MAIN commitmail json YAML

2014-09-30 17:59:06 UTC MAIN commitmail json YAML

2014-09-30 15:25:18 UTC MAIN commitmail json YAML

make seek test routine work with the configured block size.

(mlelstv)

2014-09-30 15:24:15 UTC MAIN commitmail json YAML

the buffer is also used when there is no input

(mlelstv)

2014-09-30 14:57:51 UTC MAIN commitmail json YAML

Prefer dash to bash when searching for a usable shell.
I have tested a complete build with HOST_SH=dash on NetBSD.

(apb)

2014-09-30 14:24:26 UTC MAIN commitmail json YAML

Accept the Odroid specific tweaks for selecting clkout for external USB
devices on the Odroid boards

(reinoud)

2014-09-30 14:23:41 UTC MAIN commitmail json YAML

arch/arm/samsung/ cleanup : move SoC specific power and phy routines into
exynos_soc.c and move Odroid board specific tweaks to odroid_machdep.c

(reinoud)

2014-09-30 14:20:55 UTC MAIN commitmail json YAML

2014-09-30 12:56:26 UTC MAIN commitmail json YAML

Use the global exynos_pmureg_bsh and exynos_sysreg_bsh bus space subregions

(reinoud)

2014-09-30 12:55:29 UTC MAIN commitmail json YAML

Provide exynos_sysreg_bsh as a global bus_space_subregion

(reinoud)

2014-09-30 11:34:07 UTC MAIN commitmail json YAML

change freq change message to aprint_debug to prevent dmesg spam when running estd

(jmcneill)

2014-09-30 10:30:35 UTC MAIN commitmail json YAML

Use An in AUTHORS section.

(wiz)

2014-09-30 10:23:16 UTC MAIN commitmail json YAML

2014-09-30 10:21:50 UTC MAIN commitmail json YAML

2014-09-30 10:15:03 UTC MAIN commitmail json YAML

Fix the puffs_sop_thread -> puffs_cookie2vnode path:
- pass the cookie by reference
- add missing mutex_exit()
- update assertion for VNON typed vnodes

(hannken)

2014-09-30 08:20:29 UTC MAIN commitmail json YAML

Add comma in enumeration.

(wiz)

2014-09-30 08:14:48 UTC MAIN commitmail json YAML

Add mpt reference, as support for this device was added recently

(pettai)

2014-09-30 07:34:50 UTC MAIN commitmail json YAML

Say that tools should use C89, not C99; Say that tools may use
HAVE_NBTOOL_CONFIG_H to conditionally exclude features.  Many
other small changes.

(apb)

2014-09-30 02:12:55 UTC MAIN commitmail json YAML

2014-09-30 00:30:00 UTC netbsd-6 commitmail json YAML

Ticket 1119-1120, 1122-1127 and 1129-1130.

(msaitoh)

2014-09-30 00:06:19 UTC MAIN commitmail json YAML

Do not trust the filesystem's readdir to give us nul-terminated file names

(manu)

2014-09-29 22:22:03 UTC MAIN commitmail json YAML

2014-09-29 21:45:15 UTC MAIN commitmail json YAML

shut up gcc warning
while there, do some magic number reduction

(macallan)

2014-09-29 21:05:11 UTC MAIN commitmail json YAML

2014-09-29 21:04:52 UTC MAIN commitmail json YAML

2014-09-29 21:04:34 UTC MAIN commitmail json YAML

2014-09-29 20:29:44 UTC MAIN commitmail json YAML

Not ready for prime time, needs at least proplib.

(christos)

2014-09-29 20:28:57 UTC MAIN commitmail json YAML

2014-09-29 18:48:10 UTC netbsd-6-0 commitmail json YAML

2014-09-29 18:46:27 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1120):
sys/dev/pci/radeonfb.c: revision 1.84
sys/dev/wsfb/genfb.c: revision 1.54
Do not printf(foobar()).  Bad bad bad bad bad!

(msaitoh)

2014-09-29 18:44:42 UTC netbsd-6-1 commitmail json YAML

2014-09-29 18:41:51 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1130):
share/man/man9/iic.9: revision 1.10
Correct return type of iic_release_bus.

(msaitoh)

2014-09-29 18:40:43 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1129):
sys/arch/amd64/conf/GENERIC: revision 1.385
Enable options VND_COMPRESSION in amd64/GENERIC.

(msaitoh)

2014-09-29 18:39:02 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1127):
share/man/man3/attribute.3: revision 1.16
Fix note on __predict_true: predicts nonzero, not 1 specifically.

(msaitoh)

2014-09-29 18:38:09 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1126):
share/man/man9/uvm_km.9: revision 1.3
Fix typo in uvm_km(9): there is no struct vm_map_kernel.

(msaitoh)

2014-09-29 18:35:30 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1125):
share/man/man9/uvm_map.9: revision 1.3
share/man/man9/uvm_map.9: revision 1.4
share/man/man9/uvm_map.9: revision 1.5
Split large paragraph about uobj/uoffset into a bulleted list.
Mention that uvm_map doesn't add a reference to uobj.  Evidently this
information is important, since I just wasted countless hours over
the past months investigating kernel memory corruption arising from a
failure to notice this fact.
Miscellaneous markup, speling and grammar fix.
Bump date for previous. Americanize a spelling.

(msaitoh)

2014-09-29 18:33:21 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1123):
sys/dev/pci/ichsmb.c: revision 1.37
Register a null pmf handler even if we failed to attach.
Keeps ichsmb(4) from preventing suspend even if it's broken because
of ichlpcib(4) grodiness.

(msaitoh)

2014-09-29 18:28:15 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1122):
sys/dev/acpi/acpi_ec.c: revision 1.73
Register a null power handler if acpiec fails to attach.
On one of my machines, there's no _GPE method, so
acpiec_parse_gpe_package fails, and the only function acpiec(4)
serves is to inhibit suspend/resume.
XXX We should really put the power handlers in the cfattach so that
it's not necessary to register a null power handler in every error
branch of every device's attach routine...

(msaitoh)

2014-09-29 18:00:39 UTC netbsd-6 commitmail json YAML

Pull up following revision(s) (requested by riastradh in ticket #1119):
share/man/man9/callout.9: revision 1.27
callout_ack returns void, not bool.

(msaitoh)

2014-09-29 17:54:13 UTC MAIN commitmail json YAML

escape $ in $board so this will boot on beaglebone too

(jmcneill)

2014-09-29 16:21:56 UTC netbsd-7 commitmail json YAML

2014-09-29 16:15:59 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by jmcneill in ticket #120):
sys/dev/ic/mpt_netbsd.c: revision 1.28
sys/dev/ic/mpt_netbsd.c: revision 1.29
sys/dev/ic/mpt.c: revision 1.17
sys/dev/ic/mpt_netbsd.c: revision 1.30
sys/dev/ic/mpt_netbsd.c: revision 1.31
share/man/man4/bio.4: revision 1.12
share/man/man4/mpt.4: revision 1.6
sys/dev/ic/mpt.h: revision 1.8
sys/dev/ic/mpt_netbsd.c: revision 1.26
sys/dev/ic/mpt_netbsd.c: revision 1.27
- Add bio(4) support.
- xref mpt(4) in bio(4).
- xref bio(4) in mpt(4).
- show "sd0" instead of "mpt0" for volume device name
- include vendor/product/rev info for volumes and their disks.
- implement BIOCDISK_NOVOL
- for BIOCDISK_NOVOL, set bd_disknovol=true for any disk not associated with a
  volume for BIOCDISK_NOVOL, when setting bd_disknovol=false, also set
  bv_volid

(msaitoh)

2014-09-29 15:54:28 UTC MAIN commitmail json YAML

Minix also has getenv_r support

(justin)

2014-09-29 15:45:36 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by tls in ticket #119):
sys/dev/iscsi/iscsi_send.c: revision 1.10
The "throttling" code in the in-kernel iSCSI initiator is very questionable;
it sleeps on a ccb that appears highly unlikely to wake up, since it seems
to be waiting to _submit_ that very ccb!  This is doubtless why someone tried
to disable it in the default case via several #defines.
Unfortunately one of those #defines is later tested backwards.  Fix that.
The in-kernel initiator now seems to survive a system build without hanging.

(msaitoh)

2014-09-29 15:31:01 UTC netbsd-7 commitmail json YAML

Pull up following revision(s) (requested by khorben in ticket #118):
common/lib/libc/arch/i386/string/small/strchr.S: revision 1.3
Look for the character to locate before checking for the NUL character
As documented in PR port-i386/49208, this fixes strchr(s, '\0'), as used by
the FAT first-stage bootloader on x86 (bootxx_msdos).
strchr(s, '\0') is otherwise equivalent to strlen(string), which would
probably look nicer in the original file, dosfs.c from libsa.
Confirmed working in qemu and on real hardware.
ok joerg@
XXX pull-up to netbsd-6 and netbsd-7

(msaitoh)

2014-09-29 15:02:56 UTC MAIN commitmail json YAML

2014-09-29 14:58:33 UTC MAIN commitmail json YAML

Return EOVERFLOW like FreeBSD does if the buffer size exceeds INT_MAX
(well FreeBSD documents INT_MAX + 1, but in the code it is INT_MAX).

(christos)

2014-09-29 14:47:53 UTC MAIN commitmail json YAML

2014-09-29 05:58:48 UTC MAIN commitmail json YAML

note addition of type subcommand to gpt(8)

(jnemeth)

2014-09-29 05:56:43 UTC MAIN commitmail json YAML

2014-09-28 18:59:43 UTC MAIN commitmail json YAML

Remove never used usb locators

(reinoud)

2014-09-28 15:39:36 UTC MAIN commitmail json YAML

make global variables static
also, make cursor test pattern red/green to highlight RGB vs. BGR

(macallan)

2014-09-28 14:38:29 UTC MAIN commitmail json YAML

2014-09-28 12:57:22 UTC MAIN commitmail json YAML

the RPi wiki had the values for VCPROPTAG_SET_CURSOR_INFO and
VCPROPTAG_SET_CURSOR_STATE swapped - now they actually work
thanks jmcneill@ for having the right idea

(macallan)

2014-09-28 11:27:01 UTC MAIN commitmail json YAML

for BIOCDISK_NOVOL, when setting bd_disknovol=false, also set bv_volid

(jmcneill)

2014-09-28 11:20:23 UTC MAIN commitmail json YAML

for BIOCDISK_NOVOL, set bd_disknovol=true for any disk not associated with a volume

(jmcneill)

2014-09-28 08:14:51 UTC MAIN commitmail json YAML

2014-09-28 05:00:56 UTC MAIN commitmail json YAML

Put dumb optimizations to avoid conditionals in putchar drawing loops.

~10% improvements of time cat results on LUNA-II 8bpp framebuffer.

(tsutsui)

2014-09-28 04:43:01 UTC MAIN commitmail json YAML

Pull readability changes from OpenBSD/luna88k.

- prepare and use unpack_attr() function to get fg and bg from attribute
- use proper variable names to clarify meanings

Tested on LUNA-II with 8bpp framebuffer.

(tsutsui)

2014-09-27 21:01:51 UTC MAIN commitmail json YAML

implement BIOCDISK_NOVOL

(jmcneill)

2014-09-27 19:10:58 UTC MAIN commitmail json YAML

no longer needed

(jmcneill)

2014-09-27 18:16:56 UTC MAIN commitmail json YAML

include vendor/product/rev info for volumes and their disks

(jmcneill)

2014-09-27 17:40:54 UTC MAIN commitmail json YAML

show "sd0" instead of "mpt0" for volume device name

(jmcneill)

2014-09-27 16:42:07 UTC MAIN commitmail json YAML

Add execvpe in one more place to explain its last argument.
Call character '0' 'NUL' instead of 'null'.

(wiz)

2014-09-27 16:22:47 UTC MAIN commitmail json YAML

mpt(4): added bio(4) support.

(jmcneill)

2014-09-27 16:17:27 UTC MAIN commitmail json YAML

2014-09-27 16:16:28 UTC MAIN commitmail json YAML

2014-09-27 16:14:16 UTC MAIN commitmail json YAML

2014-09-27 15:44:27 UTC MAIN commitmail json YAML

fix size in memset() parameter. Thanks max.

(christos)

2014-09-27 15:21:40 UTC MAIN commitmail json YAML

Include <dirent.h> instead of <sys/dirent.h> for POSIX compliancy.

Fixes build errors on Linux, tested on CentOS.
The problem was pointed out by Valery Ushakov.
Note <sys/param.h> will be prepared by src/tools/compat/configure.

XXX: not sure if we still need this dumb tool for a TierII port...

(tsutsui)

2014-09-27 12:11:13 UTC MAIN commitmail json YAML

Fix synopsis, remove unneeded Pp macro before display block and add one
before prototype. While here, use "Rv -std" for RETURN VALUES.

(njoly)

2014-09-27 12:08:46 UTC MAIN commitmail json YAML

Introduce a separate bit mask for the return address. Use it on HPPA.

(joerg)

2014-09-27 11:23:11 UTC MAIN commitmail json YAML

Note import of dhcpcd-6.4.7

(roy)

2014-09-27 11:00:07 UTC MAIN commitmail json YAML

2014-09-27 08:46:56 UTC MAIN commitmail json YAML

Consistency in commas. Wording.

(wiz)

2014-09-27 04:03:25 UTC MAIN commitmail json YAML

2014-09-27 01:18:49 UTC MAIN commitmail json YAML

Note import of dhcpcd-6.4.6

(roy)

2014-09-27 01:17:34 UTC MAIN commitmail json YAML

2014-09-26 23:57:26 UTC MAIN commitmail json YAML

missed one reference.

(christos)

2014-09-26 22:18:48 UTC MAIN commitmail json YAML

The crypto-enabled dhclient command needs more libraries burned in so that
it does not depend on /usr/lib
XXX: pullup-7

(christos)

2014-09-26 20:32:52 UTC MAIN commitmail json YAML

set error return on error (from max)

(christos)

2014-09-26 19:28:03 UTC MAIN commitmail json YAML

2014-09-26 19:27:05 UTC MAIN commitmail json YAML

EXYNOS4 and EXYNOS5 are now exclusive in odroid_machdep.c

(reinoud)

2014-09-26 19:25:56 UTC MAIN commitmail json YAML

2014-09-26 19:03:25 UTC MAIN commitmail json YAML

Remove KASSERT that bugs compilation

(reinoud)

2014-09-26 18:59:29 UTC MAIN commitmail json YAML

2014-09-26 18:26:24 UTC MAIN commitmail json YAML

Decouple sscom console choice from Exynos SoC ID

(reinoud)

2014-09-26 17:11:05 UTC MAIN commitmail json YAML

copy the leak fix to the other switch branch (from max)

(christos)

2014-09-26 16:30:32 UTC MAIN commitmail json YAML

Split the two kernels to include only support for the device it describes

(reinoud)

2014-09-26 15:58:59 UTC MAIN commitmail json YAML

Cannot encode \$ in VIS_CSTYLE as that looks like `vis -l` encoding.

(roy)

2014-09-26 15:43:36 UTC MAIN commitmail json YAML

Revert prior patch as it breaks `vis -l` as pointed out by apb.

(roy)

2014-09-26 15:33:59 UTC MAIN commitmail json YAML

2014-09-26 15:33:33 UTC MAIN commitmail json YAML

Add USBHIST_SIZE option

(reinoud)

2014-09-26 15:27:12 UTC MAIN commitmail json YAML

add a test for the bug I fixed yesterday, and explain the tests.

(christos)

2014-09-26 15:26:01 UTC MAIN commitmail json YAML

oops I terminated the block too early (thanks unit tests!)

(christos)

2014-09-26 13:48:00 UTC MAIN commitmail json YAML

Don't encode any characters in VIS_CSTYLE that have a special meaning
in unvis(3), such as n r b, etc.

(roy)

2014-09-26 13:03:22 UTC MAIN commitmail json YAML

Remove \$ as a hidden marker as vis(3) wasn't setting it
and it clobbered VIS_SHELL | VIS_CSTYLE.

(roy)

2014-09-26 12:59:28 UTC MAIN commitmail json YAML

Decode any printable characters encoded with VIS_CSTYLE so
unvis(3) works with vis.c r1.25

(roy)

2014-09-26 11:04:06 UTC MAIN commitmail json YAML

Revert last change. This was already fixed differently and something
went wrong with the change anyway. Sorry

(tron)

2014-09-26 10:36:11 UTC MAIN commitmail json YAML

Re-add default for "rtsol". "/etc/rc.d/network" still checks for this
setting and complains if it isn't defined at all. Add a comment that
it is deprecated and suggest to use "dhcpcd=YES" instead.

(tron)

2014-09-26 09:02:26 UTC MAIN commitmail json YAML

not overhaul of gpt(8)

(jnemeth)

2014-09-26 08:56:35 UTC MAIN commitmail json YAML

- handle a GPT that isn't an exact multiple of a sector
- adjust PMBR size, in case new disk is a different size
- don't leak as much memory
- clean up error handling somewhat

(jnemeth)

2014-09-26 08:05:00 UTC MAIN commitmail json YAML

s/__diagused/__debugused/ for KDASSERT

(ryo)

2014-09-26 05:34:15 UTC MAIN commitmail json YAML

no C99isms in tool code

(jnemeth)

2014-09-26 05:01:44 UTC MAIN commitmail json YAML

no c99 for tools.

(christos)

2014-09-26 02:30:27 UTC MAIN commitmail json YAML

Simplify even more.

(wiz)

2014-09-26 02:20:39 UTC MAIN commitmail json YAML

Sort options in SYNOPSIS/usage.

(wiz)

2014-09-26 02:18:57 UTC MAIN commitmail json YAML

Simplify/fix macro usage. Bump date for previous.

(wiz)

2014-09-26 01:21:07 UTC MAIN commitmail json YAML

add VIS_META/VIS_SHELL support to encode all shell metacharacters.
XXX: /etc/rc.d/wizd fix $

(christos)

2014-09-26 01:20:00 UTC MAIN commitmail json YAML

make for introduce a new block level for c99 decls.

(christos)

2014-09-25 16:05:44 UTC MAIN commitmail json YAML

enable NFS root FS support in RPI

(jakllsch)

2014-09-25 15:08:29 UTC MAIN commitmail json YAML

2014-09-25 11:33:33 UTC MAIN commitmail json YAML

unfold comment and fix spelling

(mbalmer)

2014-09-25 07:59:29 UTC MAIN commitmail json YAML

When spinning up the 2nd CPU, do it in little-endian mode so we access
the chip's registers properly.

(matt)

2014-09-25 05:58:34 UTC MAIN commitmail json YAML

2014-09-25 05:05:28 UTC MAIN commitmail json YAML

2014-09-25 04:59:15 UTC MAIN commitmail json YAML

Always set CORTEXA9_AUXCTL_SMP on the CortexA9 as well as A7

(ryo)