Revision tags: release/13.4.0-p5, release/13.5.0-p1, release/14.2.0-p3, release/13.5.0, release/14.2.0-p2, release/14.1.0-p8, release/13.4.0-p4, release/14.1.0-p7, release/14.2.0-p1, release/13.4.0-p3, release/14.2.0, release/13.4.0, release/14.1.0, release/13.3.0, release/14.0.0, release/13.2.0 |
|
#
57e12d39 |
| 03-Mar-2023 |
Ed Maste <emaste@FreeBSD.org> |
partedit: make minimum FreeBSD install size just under 1 GiB
1 GiB is a convenient disk image size for testing. It is also the installer's minimum size, but the minimum applies to the partition rat
partedit: make minimum FreeBSD install size just under 1 GiB
1 GiB is a convenient disk image size for testing. It is also the installer's minimum size, but the minimum applies to the partition rather than the whole disk. Testing with a 1 GiB image resulted in the counterintuitive error "There is not enough free space on <disk> to install FreeBSD (1.0 GB free, 1.0 GB required)."
Reduce the installer's minimum size slightly to support this case.
Reviewed by: brd Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D38881
show more ...
|
#
cd724c25 |
| 04-Feb-2024 |
Mariusz Zaborski <oshogbo@FreeBSD.org> |
bsdinstall: complete whitelabeling the installer
The commit 147585b4893bc38698aaa971af336b241477eac3 introduces whitlabeling. This commit addresses couple more places where the os name was missed.
bsdinstall: complete whitelabeling the installer
The commit 147585b4893bc38698aaa971af336b241477eac3 introduces whitlabeling. This commit addresses couple more places where the os name was missed.
Reviewed by: imp, asiciliano, brd Differential Revision: https://reviews.freebsd.org/D43638
show more ...
|
#
6e8bf240 |
| 17-Oct-2023 |
John Baldwin <jhb@FreeBSD.org> |
bsdinstall partedit: Use snprintf instead of sprintf for error messages
When generating a message for a dialog box into a static buffer, use snprintf instead of sprintf to avoid buffer overflows.
R
bsdinstall partedit: Use snprintf instead of sprintf for error messages
When generating a message for a dialog box into a static buffer, use snprintf instead of sprintf to avoid buffer overflows.
Reviewed by: emaste Differential Revision: https://reviews.freebsd.org/D42240
show more ...
|
#
61ba55bc |
| 04-Oct-2023 |
Baptiste Daroussin <bapt@FreeBSD.org> |
bsddialog: import version 1.0
|
#
b3e76948 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
Remove $FreeBSD$: two-line .h pattern
Remove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
|
#
23099099 |
| 28-Jun-2023 |
John Baldwin <jhb@FreeBSD.org> |
bsdinstall: Handle errors from geom_gettree.
geom_gettree probably never fails, and if it does there isn't much of a fallback other than aborting partitioning. However, a few places were checking t
bsdinstall: Handle errors from geom_gettree.
geom_gettree probably never fails, and if it does there isn't much of a fallback other than aborting partitioning. However, a few places were checking the return value and not doing anything with it triggering a unused-but-set-variable warning. Checking the errors resolves the warning.
While here, check for errors in other places that weren't checking for them at all, remove a spurious double call (the second call overwrote the mesh structure leaking all the pointers from the first), and close a few resource leaks on error paths.
Reviewed by: imp, emaste Differential Revision: https://reviews.freebsd.org/D40779
show more ...
|
#
4d846d26 |
| 10-May-2023 |
Warner Losh <imp@FreeBSD.org> |
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD
The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of
spdx: The BSD-2-Clause-FreeBSD identifier is obsolete, drop -FreeBSD
The SPDX folks have obsoleted the BSD-2-Clause-FreeBSD identifier. Catch up to that fact and revert to their recommended match of BSD-2-Clause.
Discussed with: pfg MFC After: 3 days Sponsored by: Netflix
show more ...
|
Revision tags: release/12.4.0 |
|
#
147585b4 |
| 13-May-2022 |
Brad Davis <brd@FreeBSD.org> |
bsdinstall: allow whitelabeling the installer
Override OSNAME to change the name of the OS in the installer.
This is a first step, the shell changes will be separate.
Reviewed by: allanjude Appro
bsdinstall: allow whitelabeling the installer
Override OSNAME to change the name of the OS in the installer.
This is a first step, the shell changes will be separate.
Reviewed by: allanjude Approved by: allanjude Differential Revision: https://reviews.freebsd.org/D34878 Sponsored by: Rubicon Communications, LLC ("Netgate")
show more ...
|
#
2c4499dc |
| 13-May-2022 |
Brad Davis <brd@FreeBSD.org> |
bsdinstall: add missing init of fd variable
Missed breaking this commit into smaller pieces
Approved by: kp
|
#
964ad27f |
| 13-May-2022 |
Brad Davis <brd@FreeBSD.org> |
bsdinstall: Filter out devices that cannot be opened
Devices that cannot be opened are most likely the install media and should not be listed as destinations.
Reviewed by: allanjude Approved by:
bsdinstall: Filter out devices that cannot be opened
Devices that cannot be opened are most likely the install media and should not be listed as destinations.
Reviewed by: allanjude Approved by: allanjude Differential Revision: https://reviews.freebsd.org/D34879 Sponsored by: Rubicon Communications, LLC ("Netgate")
show more ...
|
Revision tags: release/13.1.0 |
|
#
50e24496 |
| 04-Apr-2022 |
Alfonso S. Siciliano <asiciliano@FreeBSD.org> |
bsdinstall/partedit: Replace libdialog with libbsddialog
bsdinstall/partedit: Replace (LGPL) libdialog with (BSD-2-Clause) libbsddialog. Rewrite diskeditor.c and rename diskmenu.c because it uses an
bsdinstall/partedit: Replace libdialog with libbsddialog
bsdinstall/partedit: Replace (LGPL) libdialog with (BSD-2-Clause) libbsddialog. Rewrite diskeditor.c and rename diskmenu.c because it uses an API for menu totally incompatible with libbsddialog. This is a User Interface change everything else is unchanged.
Approved by: bapt (mentor) Differential Revision: https://reviews.freebsd.org/D34639
show more ...
|
Revision tags: release/12.3.0 |
|
#
3e5bff10 |
| 19-May-2021 |
Ed Maste <emaste@FreeBSD.org> |
bsdinstall: Remove unused sysctl.h header #include
|
Revision tags: release/13.0.0 |
|
#
5140034c |
| 26-Mar-2021 |
Nathan Whitehorn <nwhitehorn@FreeBSD.org> |
Add a new mode to the scripted partition editor for variant disk names.
If the disk parameter "DEFAULT" is set in place of an actual device name, or no disk is specified for the PARTITIONS parameter
Add a new mode to the scripted partition editor for variant disk names.
If the disk parameter "DEFAULT" is set in place of an actual device name, or no disk is specified for the PARTITIONS parameter, the installer will follow the logic used in the automatic-partitioning mode, in which it will either provide a selection dialog for one of several disks if several are present or automatically select it if there is only one. This simplifies the creation of fully-automatic installation media for hardware or VMs with varying disk names.
Suggested by: Egoitz Aurrekoetxea <egoitz@sarenet.es> MFC after: 3 weeks Relnotes: yes
show more ...
|
Revision tags: release/12.2.0, release/11.4.0, release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0 |
|
#
1de7b4b8 |
| 27-Nov-2017 |
Pedro F. Giffuni <pfg@FreeBSD.org> |
various: general adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error
various: general adoption of SPDX licensing ID tags.
Mainly focus on files that use BSD 2-Clause license, however the tool I was using misidentified many licenses so this was mostly a manual - error prone - task.
The Software Package Data Exchange (SPDX) group provides a specification to make it easier for automated tools to detect and summarize well known opensource licenses. We are gradually adopting the specification, noting that the tags are considered only advisory and do not, in any way, superceed or replace the license texts.
No functional change intended.
show more ...
|
Revision tags: release/10.4.0, release/11.1.0 |
|
#
d02c951f |
| 26-May-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r318658 through r318963.
|
#
d6f6b201 |
| 23-May-2017 |
Enji Cooper <ngie@FreeBSD.org> |
style(9): sort headers
MFC after: 2 weeks MFC with: r318693 Sponsored by: Dell EMC Isilon
|
#
d547c56f |
| 23-May-2017 |
Enji Cooper <ngie@FreeBSD.org> |
Some minor style(9) fixes
- Wrap at <80 columns. - Sort by type
MFC after: 2 weeks Sponsored by: Dell EMC Isilon
|
#
9b3ece1c |
| 04-Feb-2017 |
Enji Cooper <ngie@FreeBSD.org> |
MFhead@r313243
|
#
65575c14 |
| 29-Jan-2017 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r312894 through r312967.
|
#
2b375b4e |
| 28-Jan-2017 |
Yoshihiro Takahashi <nyan@FreeBSD.org> |
Remove pc98 support completely. I thank all developers and contributors for pc98.
Relnotes: yes
|
Revision tags: release/11.0.1, release/11.0.0, release/10.3.0 |
|
#
b5ff185e |
| 12-Sep-2015 |
Baptiste Daroussin <bapt@FreeBSD.org> |
Merge from head
|
#
ab875b71 |
| 14-Aug-2015 |
Navdeep Parhar <np@FreeBSD.org> |
Catch up with head, primarily for the 1.14.4.0 firmware.
|
Revision tags: release/10.2.0 |
|
#
8d0f1085 |
| 22-Jul-2015 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r285341 through r285792.
|
#
7059fa6f |
| 18-Jul-2015 |
Allan Jude <allanjude@FreeBSD.org> |
Add support for two workarounds for known issues booting GPT in legacy mode on some hardware
For Lenovo laptops with buggy bios (x220, t420, t520): Write the 0xee entry into the second slot in the
Add support for two workarounds for known issues booting GPT in legacy mode on some hardware
For Lenovo laptops with buggy bios (x220, t420, t520): Write the 0xee entry into the second slot in the pmbr instead of the first
For some Dell and HP models: The BIOS gives a warning message when booting in legacy mode from a GPT partitioned disk where the 0xee partition in the pmbr is not flagged active For models known to have this problem, mark the pmbr active during installation
Use smbios data to identify machines known to be affected by any of the above, and offer the user the option to apply the workaround
In bsdinstall's ufs auto mode (autopart partition wizard): Allow users to select which type of partition table to use Keep current defaults: MBR for BIOS, GPT for UEFI This allows users to choose GPT for legacy boot if they wish
PR: 184910 PR: 194359 Reviewed by: Michael Dexter Approved by: marcel MFC after: 3 days X-MFC-With: r285594 Relnotes: yes Sponsored by: ScaleEngine Inc. Differential Revision: https://reviews.freebsd.org/D3091
show more ...
|
#
9268022b |
| 19-Nov-2014 |
Simon J. Gerraty <sjg@FreeBSD.org> |
Merge from head@274682
|