History log of /haiku/build/jam/images/definitions/regular
Revision Date Author Comments
# bb83316a 26-Apr-2024 Augustin Cavalier <waddlesplash@gmail.com>

L2CAP: Major refactor of the whole component.

(And surrounding portions of the "btCoreData" module.)

* Rewrote the main "l2cap.h" header representing protocol constants
and structures. Now conforms to general Haiku naming conventions
rather than BSD ones. Some more constants added/removed based
on the most recent Bluetooth specification.

* Rewrote all code derived from the BSDs to match Haiku conventions
and structures in the driver.

* Dropped the "channel" and "frame" structures from "btCoreData".
Channels are now managed by L2capEndpoints, and "frames" are
now just plain net_buffers without surrounding structures.
This also makes state management much simpler.

* Made it so that actual net_buffers are passed through to the
l2cap_receive function rather than another data structure.
A fake interface address is used to communicate connection
information. (This probably ought to be changed, though.)

* Get rid of l2cap_lower and l2cap_upper abstractions.
Everything related to channel/endpoint management is now
done in L2capEndpoint, while buffer reception is handled
directly in l2cap_receive and elsewhere, same as other drivers.

* Wire up more hooks and fix module flags (needed to be able to
get the module loaded and opening sockets at all.)

* Implement an actual locking strategy in L2capEndpoint
and HciConnection. There's still problems with lifetime
management, but at least thread-safety is mostly handled.

* Create an L2capEndpointManager and use it to manage
the endpoints, rather than having a single (unsafe)
linked-list.

And plenty of other refactorings and cleanups besides.
There's still more to be done for Bluetooth overall, though:

* The "btCoreData" and "hci" modules also badly need a major
overhaul, and should be merged into a single "bluetooth"
bus_manager. They also shouldn't be passing around pointers
to other modules like this.

* There's a number of TODOs/FIXMEs in the L2CAP module, most
notably around timeouts (especially command timeouts) and
parameter validation/specification.

Tested by myself with kallisti5's help. Incoming connections
(on the PSM for SDP) get all the way to the latter half
of the Configuration step before hanging.


# 123fa386 31-Jan-2024 Augustin Cavalier <waddlesplash@gmail.com>

usb_audio: Add to regular image.

Requires multiple media server restarts to switch
outputs to it, but that's a known media services
problem (#12777 and #12776.)

Input doesn't work quite right with the hardware
I've been testing with, but that's also a known
problem it seems (#9951). Meanwhile, output
seems to work pretty well, once it gets going.


# 15037a29 24-Jan-2024 Humdinger <humdinger@mailbox.org>

Move TV app into haiku_extras package

As discussed at
https://discuss.haiku-os.org/t/what-does-the-tv-program-do/14511

Change-Id: I7d9501cad2b9d4b3c6898ec39398101727c2eee8
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7344
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>


# b352d8cc 18-Jan-2024 Jérôme Duval <jerome.duval@gmail.com>

virtio_gpu: add the accelerant to the regular image

fix 32-bit warnings

Change-Id: If85acfce1ac93998c13e5d9fa2e02823e219e428
Reviewed-on: https://review.haiku-os.org/c/haiku/+/7342
Haiku-Format: Haiku-format Bot <no-reply+haikuformatbot@haiku-os.org>
Reviewed-by: X512 X512 <danger_mail@list.ru>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>


# 3cfeaf26 20-Aug-2023 Vladimir Serbinenko <phcoder@gmail.com>

ufs2: Enable module

Change-Id: I1f9b92da13980637925be5e9c813af427b25feb4
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6853
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>


# 73c45108 16-Jun-2023 Alexander von Gluck IV <kallisti5@unixzen.com>

drivers/wlan: Enable on riscv64

Change-Id: I20c755a05b43f9166558a2b9f2d3da8961b52d0b


# 30d8d756 10-Mar-2023 Alexander von Gluck IV <kallisti5@unixzen.com>

minimum: Add Installer to minimum image

* Assists on early boot platforms to install / upgrade when
no network is available.
* Doesn't introduce any additional dependencies
* Creates shine-though directories too.

Change-Id: I11dd207b2ffbae1768bab7a118a51034df238878
Reviewed-on: https://review.haiku-os.org/c/haiku/+/6185
Reviewed-by: Alex von Gluck IV <kallisti5@unixzen.com>
Tested-by: Automation <automation@haiku-os.org>
Reviewed-by: Fredrik Holmqvist <fredrik.holmqvist@gmail.com>


# 6f720112 31-Jan-2023 Augustin Cavalier <waddlesplash@gmail.com>

Drop "play" command.

It was used only for playing CDs via SCSI commands, which is what
CDPlayer also did; but this is not really much supported anymore,
so CDPlayer was removed years ago, and now this is too.

Its source code lives on at HaikuArchives.

Fixes #18236.


# d9f90ce7 16-Dec-2022 Jérôme Duval <jerome.duval@gmail.com>

Shortcuts: provide some default actions for mute, increment and decrement volume media keys

Works for HID-aware devices (USB & PS/2).

Change-Id: I45e9ededaab1699f30e55fb644ec0e3ceebeb191
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5937
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>


# 8e34bbe7 25-Oct-2022 Augustin Cavalier <waddlesplash@gmail.com>

Remove build logic for creating the userguide and welcome packages.

They are now created from a separate repository and via HaikuPorts.
Since the HaikuPorts packages are not yet in the BuildPackageRepository,
the actual section that adds the packages is commented out (but it only
runs for release-* targets anyway.)

The "welcome", "userguide", and "quicktour" scripts, which are symlinked
from the desktop in release builds, are added to the Haiku package's
"regular" profile instead (they do not actually require the other packages
to be installed but will detect if they are not and launch the online
versions instead.)


# 5d7ed80a 25-Sep-2022 Oscar Lesta <oscar.lesta@gmail.com>

/bin/pidof: add it to regular images and to the Haiku package.

Change-Id: I07cbc6b715ee5d549ec4fcaf9b28398ee6ffb3dc
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5697
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>
Reviewed-by: Adrien Destugues <pulkomandy@pulkomandy.tk>


# d13068c1 09-Jun-2022 PulkoMandy <pulkomandy@pulkomandy.tk>

iaxwifi200: add to regular image


# 06d10931 23-Apr-2022 X512 <danger_mail@list.ru>

jam: fix nightly-raw build for riscv64

Change-Id: Ife616cba1e294febf8ead772160af6cd21f8bce3
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5246
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 8fed6717 15-Mar-2022 Alexander von Gluck IV <kallisti5@unixzen.com>

mkdos: Drop from image. Use mkfs -t fat

Change-Id: If79f67126e23bea6c8dbb348f075832cd0bf8360
Reviewed-on: https://review.haiku-os.org/c/haiku/+/5107
Reviewed-by: waddlesplash <waddlesplash@gmail.com>


# 147b47e0 16-Jul-2020 Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>

Translators: Add an AVIF translator

This translator only supports still images for now, and supports both
decoding and encoding.

Encoding support has been tested only with aom, rav1e doesn’t build on
Haiku yet, see https://github.com/haikuports/haikuports/pull/5534 for
one of the missing dependencies.

Change-Id: I716f4b862ed316b89b227bfed38072d72074201f
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3040
Reviewed-by: waddlesplash <waddlesplash@gmail.com>
Reviewed-by: Jérôme Duval <jerome.duval@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>


# 5478ac96 21-Jun-2021 X512 <danger_mail@list.ru>

ati: fix for 64 bits and non-x86 architectures, SMAP fixes

ATI graphics driver is useful for QEMU option `-device ati-vga`.

Change-Id: Ia932d07d23b16cd9e2eefe65821a38a87427c416
Reviewed-on: https://review.haiku-os.org/c/haiku/+/4116
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# 72e0f9bf 21-Jun-2021 X512 <danger_mail@list.ru>

ati.accelerant: 64 bit fixes

Change-Id: I0f82dfe7bc73122546d262ab7e94010f1adff500
Reviewed-on: https://review.haiku-os.org/c/haiku/+/4115
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# 22c72a99 20-May-2021 Jérôme Duval <jerome.duval@gmail.com>

build: remove wavelanwifi from the default image

wi(4) was removed in FreeBSD 13

Change-Id: I4008dba521e6246c817668f49169db1559908824
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3957
Reviewed-by: Rene Gollent <rene@gollent.com>


# 65f52a5f 20-May-2021 Jérôme Duval <jerome.duval@gmail.com>

build: remove the firewire support from the default image

decommissioning.

Change-Id: Ie7ccba705f7282193120241479d2ae83bd271b2c
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3956
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>
Reviewed-by: Fredrik Holmqvist <fredrik.holmqvist@gmail.com>
Tested-by: Commit checker robot <no-reply+buildbot@haiku-os.org>


# b5efad4e 22-Feb-2021 Alexander G. M. Smith <agmsmith@ncf.ca>

PackageKit: Remove hard coded first boot package processing scripts.

Once change 2342 is in place (running first boot scripts exported from
packages), see https://review.haiku-os.org/c/haiku/+/2342,
remove data/system/boot/post_install/add_catalog_entry_attributes.sh
and related support infrastructure (magic files, launch_roster entries).

The work this script did can in fact be done at image creation time
instead of at first boot.

Change-Id: I485e1a0a87c3e6a6ba3f882e65996f2327134d37
Reviewed-on: https://review.haiku-os.org/c/haiku/+/3751
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# 44c014b0 16-Aug-2020 Michael Lotz <mmlr@mlotz.ch>

es1370: Add driver to build.

Works under QEMU with some glitches.


# 13b45a2e 13-Jul-2019 Preetpal Kaur <preetpalok123@gmail.com>

Integrate PadBlocker in input preferences

- Import padblocker sources
- Add slider to set padblocking time
- Generates PadBlocker settings

Fixes #11673

Change-Id: Ic88416215aabb1ae6aba79ff41cb55a7f0f8008d
Reviewed-on: https://review.haiku-os.org/c/haiku/+/1590
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# 9aacbbbb 03-Apr-2020 Jérôme Duval <jerome.duval@gmail.com>

HaikuImage: add i2c bus manager and pch_i2c bus

add i2c bin tool

Change-Id: Id83e1ec4f008d3728120dcf5a7f43c4b621c1272
Reviewed-on: https://review.haiku-os.org/c/haiku/+/2486
Reviewed-by: Adrien Destugues <pulkomandy@gmail.com>


# 14af8141 19-Apr-2020 Augustin Cavalier <waddlesplash@gmail.com>

build: Merge ilmbase and openexr build features.

Also only declare dependencies on OpenEXR libraries,
and let the ilmbase ones (which are now in the same package anyway)
get pulled in implicitly.


# 0f9ffb37 05-Feb-2020 Adrien Destugues <pulkomandy@pulkomandy.tk>

Add a Person file to tracker new templates

Fixes #9397.


# 218a8c03 17-May-2019 Augustin Cavalier <waddlesplash@gmail.com>

Revert the Codec Kit.

All of Barrett's individual reverts have been squashed into this
one commit, save a few actual bugfixes.

Change-Id: Ib0a7d0a841d3ac40b1fca7372c58b7f9229bd1f0


# e88c3d58 02-May-2019 François Revol <revol@free.fr>

Add setcontrollook minimal CLI tool

Just does what the name says

Change-Id: I6cf23f997ce544df83d4ef2f73a3b130dea8825c
Reviewed-on: https://review.haiku-os.org/c/1432
Reviewed-by: Stephan Aßmus <superstippi@gmx.de>


# d51c92f8 11-Mar-2019 François Revol <revol@free.fr>

Actually add AutoRaise to the regular image

Change-Id: Ied73e217ba91531c8b149fc5c23fd95bca53e732


# dc2d41d7 10-Mar-2019 François Revol <revol@free.fr>

Add AutoRaise to the regular image

It now works reasonably well to be of some use.

Change-Id: I2e031e4d4a7e395d4c597014b73e399c65d15041


# 24e7aa42 08-Jan-2019 Augustin Cavalier <waddlesplash@gmail.com>

regular: Typo fix.

Sorry for the noise...


# 5c8f9c2b 08-Jan-2019 Augustin Cavalier <waddlesplash@gmail.com>

build: Move WiFi drivers from the minimum to the regular image.

We don't include the wpa_supplicant on the minimum image, so
these aren't very useful (it seems one needs the wpa_supplicant
to connect even to an unsecured network, with our setup.)

Anyone who needs one of these and also has a reason to use the
minimum image can easily add them back via their UserBuildConfig.


# 9a0d08a7 08-Jan-2019 Augustin Cavalier <waddlesplash@gmail.com>

build: Move repository config and cache files to the minimum image.

Most of the time, one just winds up adding them manually anyway.


# 35eb380e 19-Nov-2018 François Revol <revol@free.fr>

Add Shelf screen-saver to the regular image

It builds and works, so let's have people test it.

Change-Id: I33016527e89aab29ba3200c8b4bf72376a32312b


# 1275248a 24-Oct-2018 Barrett17 <b.vitruvio@gmail.com>

codec_kit: First half

* Move all codec stuff into libcodec.so


# 503d8893 10-Sep-2018 Augustin Cavalier <waddlesplash@gmail.com>

Remove the "Haiku" screensaver from the tree.

As discussed in #14447.


# 7de02912 10-Mar-2018 Adrien Destugues <pulkomandy@pulkomandy.tk>

Add "recover" to the default image.

Unfortunately this is needed often enough that it deserves to be there…


# b875d6d4 17-Dec-2017 Kacper Kasper <kacperkasper@gmail.com>

Outsource OpenEXR.

* Style fixes in EXRTranslator.


# 5f8613a2 24-Nov-2017 Augustin Cavalier <waddlesplash@gmail.com>

build: Cleanup and fixes following previous commits.

* Hashing semantics for the new build repositories are different than
the old ones, so update those (if the x86 build was not broken before
it is now...)
* OptionalPackages has been updated slightly (removed libtool and git_cvs
from the default images, as they are rarely used nowadays and would pull
in a bunch of dependencies we don't really care for either)
* Removed lib:libqrencode from Haiku package requires (qrencode_kdl is a
static library, the userland libqrencode is not used anywhere in the tree,
as far as I can tell)
* Fix build of JPEG2000 translator after update
* Decouple fluidsynth build machinery and remove from image now that it
is no longer used
* Update repository URL in Repositories preflet


# a6c6dd77 23-Oct-2017 John Scipione <jscipione@gmail.com>

Add Activity Monitor to regular image

... now that it has been removed from minimum it must be added
to regular image to keep it.


# c7258f02 01-Jul-2017 Augustin Cavalier <waddlesplash@gmail.com>

PDF Writer & PDFlib: Remove from tree.

Now supplied via HaikuPorts packages.

I *think* this was the last component in the tree with a
non-OSI license.


# a34acb8c 27-Apr-2017 Dario Casalinuovo <b.vitruvio@gmail.com>

Remove play* commands from build

* Add media_client as replacement


# a4655eb8 24-Apr-2017 Alexander von Gluck IV <kallisti5@unixzen.com>

SoftwareUpdater: Add to regular image

* Great work Brian!


# 13da51e9 21-Feb-2017 Jérôme Duval <jerome.duval@gmail.com>

WebWatch: Remove.

* Outsourced to HaikuArchives for the source, Haikuports for the package recipe.


# 07558eb1 07-Jan-2017 Augustin Cavalier <waddlesplash@gmail.com>

build: Add the Repositories preflet to the regular image.


# 0df7d008 30-Dec-2016 Jérôme Duval <jerome.duval@gmail.com>

Only install libfluidsynth.so on x86_gcc2.


# db1dfaf8 21-Dec-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

Revert "Add SoftwareUpdater to regular image"

This reverts commit 19d8d9fa3983e6687caeab8fe1193861a5202ab6.


# 19d8d9fa 09-Dec-2016 John Scipione <jscipione@gmail.com>

Add SoftwareUpdater to regular image


# 5c65d2f5 02-Nov-2016 Adrien Destugues <pulkomandy@pulkomandy.tk>

Properly add the BeDecorator to the image

Put it inside the Haiku package.


# bccc6932 18-Sep-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

BeDecorator: Reintroduce to image


# 76477fc5 04-Jun-2016 Rene Gollent <rene@gollent.com>

Cleanups.

- Move libdebugger into the body with the rest of the libraries. Cleanup
suggested by Ingo. No functional change.


# fce4895d 29-May-2016 Rene Gollent <rene@gollent.com>

Debugger: Split into core library and application.

- Add subfolder src/kits/debugger which contains the debugger's core
functionality and lower layers. Correspondingly add headers/private/debugger
for shared headers to be used by clients such as the Debugger application
and eventual remote_debug_server. Adjust various files to account for
differences as a result of the split and moves.
- Add libdebugger.so to minimal Jamfile.


# fbabc74d 30-May-2016 Dario Casalinuovo <b.vitruvio@gmail.com>

http_streamer: General refactor making use of new API

* Use BUrlProtocolRoster instead of BFileRequest.
* Removed HTTPMediaIO custom code that now inherits
BAdapterIO and make the whole thing more simple.
* It work with some formats (flv, mp3, mkv) but ffmpeg fail
on others (mp4, 3gp).
* GetSize needs improvements.


# abde6a01 22-Apr-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

bluetooth: Re-introduce to image

* Previous enablement broke gcc2 and hybrid builds
* gcc2 builds fixed and tested working now
* Fix Hybrid builds via missing MultiArch Jam
* Sorry for the noise, enjoy early Bluetooth support


# 52da2024 19-Apr-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

Revert "bluetooth: Add kit, server, and preflet to image"

This reverts commit d16a0a9fc2f6b4f10e8a9eea4bb045e27e08da93.


# d16a0a9f 17-Apr-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

bluetooth: Add kit, server, and preflet to image

* Server not started until requested (via preflet) for now.


# 0421aa8c 10-Apr-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

bluetooth: Add h2generic driver to image


# ca7e8e5b 10-Apr-2016 Alexander von Gluck IV <kallisti5@unixzen.com>

bluetooth: Add kernel stack to image


# 20122a6a 19-Mar-2016 Rene Gollent <rene@gollent.com>

LegacyPackageInstaller: Fix x86_64 build.


# 6a5f8112 07-Mar-2016 Augustin Cavalier <waddlesplash@gmail.com>

PackageInstaller: Make it x86(32-bit) only.

So people aren't tempted to make .pkg files for x86_64/ARM/etc, and
because there should be no reason to have it there.

Discussed with PulkoMandy on IRC.


# d95b7ef6 19-Feb-2016 Rudolf Cornelissen <rudolf.cornelissen@gmail.com>

Added via gfx driver back to the image, since ticket #1973 was solved.


# 6352a1b8 19-Jan-2016 Augustin Cavalier <waddlesplash@gmail.com>

Add the 'mail' tool to the build.


# ec684513 07-Jan-2016 François Revol <revol@free.fr>

WindowShade: add to regular image


# b50be529 07-Jan-2016 François Revol <revol@free.fr>

Add dpms tool to regular image


# cfe6baf6 19-Oct-2015 Axel Dörfler <axeld@pinc-software.de>

cddb_daemon: renamed to cddb_lookup, moved to /src/bin.

* It's now a standard command line tool that is launched automatically
via the launch_daemon whenver a volume is mounted.


# e4b8ed4a 25-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

images/regular: Delete DVB stuff.

Thanks to Axel for reviewing!


# 00ac71aa 23-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

Fix build after DVB removal.

Apparently, the files were included in the image.


# 7eccc690 18-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

Rename PackageInstaller to LegacyPackageInstaller.

Affects only the file name, not the mimetype.
Fixes #10004.


# 0fe33fd5 07-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

images/regular: Add Nebula to the default image.


# e22a18e9 10-Jun-2015 Jérôme Duval <jerome.duval@gmail.com>

Add a feature for expat.

* Icon-O-Matic and Cortex are dependent on the feature.
* remove expat lib from the build and from the tree.
* expat package is added to regular builds.


# 136a82ff 12-Feb-2015 Augustin Cavalier <waddlesplash@gmail.com>

Cortex: add LoggingConsumer to the build.


# e611f199 11-Feb-2015 Augustin Cavalier <waddlesplash@gmail.com>

gdb: outsource.

I didn't add the gdb package to the bundled packages because AFAIK,
most users / developers of Haiku use our built-in Debugger instead,
because it's so much more awesome (thanks, Ingo & Rene!).

If I'm somehow mistaken about that, please don't hesitate to speak
up and I'll add it.


# 0de25aba 23-Dec-2014 Augustin Cavalier <waddlesplash@gmail.com>

bash_completion: delete from tree.

This was an old version of bash_completion and not included in the
image. An haikuports recipe is available if you need it.

Fixes #11660.

Signed-off-by: Adrien Destugues <pulkomandy@gmail.com>


# d181ea48 10-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

Add the ape reader to the image again.

Fixes #7048.


# 1abd97e2 26-Nov-2014 Adrien Destugues <pulkomandy@gmail.com>

Add SerialConnect to DeskBar menu.

It works well enough now.


# 03028498 17-Nov-2014 Adrien Destugues <pulkomandy@gmail.com>

Remove some unneeded file and partitionning systems

* googlefs: not working, needs update to match current page layout of
google searches
* Amiga and Apple partitionning systems: made them 68k and ppc-only,
respectively. There is not much use for those on x86 systems.

Also remove kdlhangman from the bootstrap packages.


# a1221468 26-Sep-2014 Adrien Destugues <pulkomandy@pulkomandy.tk>

Remove BSnow from the default image.

We get several users on IRC asking for help on how to disable it. It
doesn't even look good, uses a lot of CPU, and we have better (useful)
ways to demonstrate replicants on the desktop. So this demo has no use
anymore.


# 3ae6595c 18-Sep-2014 Adrien Destugues <pulkomandy@pulkomandy.tk>

Build fix.


# 88ef93a3 27-Aug-2014 Jérôme Duval <jerome.duval@gmail.com>

RegularImage: filter translators based on features.


# 220d0402 31-Jul-2014 Oliver Tappe <zooey@hirschkaefer.de>

Use libstdc++, libsupc++ and libgcc from gcc_syslibs.

* Instead of faking libstdc++.so from libstdc++.a, use libstdc++.so
from the gcc_syslibs build feature for everything except x86_gcc2.
* Use libgcc_s.so from the gcc_syslibs build feature for everything but
x86_gcc2 (which still carries libgcc as part of libroot.so).
* Drop filtering of libgcc objects for libroot, as that is no longer
necessary since we're only using libgcc-as-single-object for libroot
with x86_gcc2, where the filtered object file doesn't exist. Should
the objects that used to be filtered cause any problems as part of
libgcc_s.so, we can always filter them as part of the gcc build.
* Use libsupc++.so from the gcc_syslibs build feature for everything but
x86_gcc2.
* Adjust all Jamfiles accordingly.
* Deactivate building of faked libstdc++.so for non-x86-gcc2. For
x86_gcc2, we still build libstdc++.so from the sources in the Haiku
source tree as part of the Haiku build .
* Put gcc_syslibs package onto the image, when needed.


# 1b4510ee 25-Jul-2014 Oliver Tappe <zooey@hirschkaefer.de>

Put haiku repository onto image.

* Now that system updates seem to work properly, put the haiku
repository config and cache file onto the image automatically.
* Adjust URL of haiku repository (it is currently redirected
to some other URL at download.haiku-os.org, but that will be
changed later).


# 7481292e 08-Jul-2014 Augustin Cavalier <waddlesplash@gmail.com>

CDPlayer: remove from image & delete

* Does not work on recent hardware
* It now lives at: https://github.com/HaikuArchives/CDPlayer

Signed-off-by: Axel Dörfler <axeld@pinc-software.de>


# 9220bcf1 04-Jul-2014 François Revol <revol@free.fr>

Add /bin/clipboard to the regular images

Seemed to have gone missing in action somehow.


# 20929296 16-Jun-2014 Adrien Destugues <pulkomandy@pulkomandy.tk>

Add RemoteDesktop to the image.

There are some rough edges, but this can be useful and deserves more
exposure.


# a4070322 13-Jun-2014 John Scipione <jscipione@gmail.com>

build system: Add SoundRecorder to Deskbar

... in the "regular" image definition. Fixes #10932


# e70b99da 13-Jun-2014 John Scipione <jscipione@gmail.com>

build system: Replace tab wtih space


# 27843c6f 03-Jun-2014 Jérôme Duval <jerome.duval@gmail.com>

TIFFTranslator is now dependent on the tiff build feature.


# 9cd7c6a4 02-Jun-2014 Jérôme Duval <jerome.duval@gmail.com>

tiff: use the outsourced packages.

* packages for secondary architectures would be welcomed.


# 277f3ec6 27-May-2014 czeidler <haiku@clemens-zeidler.de>

Add libalm to the regular system libs.

libalm.so is used by Stack & Tile as well as for the constraint-based
layout BALMLayout. This also adds libalm.so to the development package;
links it to /boot/system/development/lib.


# 0584f693 09-May-2014 Jérôme Duval <jerome.duval@gmail.com>

gutenprint: use outsourced package.

* data files are still in the source tree.
* gutenprint headers contain a image.h header file which collides
with ours. This is solved by forcing include search first on
os/kernel directory.


# 8c54af56 30-Apr-2014 Oliver Tappe <zooey@hirschkaefer.de>

Whitespace cleanup in root and 'build' folder.

* Removed trailing whitespace and empty lines at top of files.


# dff7d3a0 16-Mar-2014 Oliver Tappe <zooey@hirschkaefer.de>

Add files missing in last commit, sorry.


# e4b8ed4a85d964cfd0e3cf88075de476c9647650 25-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

images/regular: Delete DVB stuff.

Thanks to Axel for reviewing!


# 00ac71aa792e6a78318e540624ebe609e1dbb686 23-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

Fix build after DVB removal.

Apparently, the files were included in the image.


# 7eccc6900101f3b2c884d1292926dd4d8e1cb0b2 18-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

Rename PackageInstaller to LegacyPackageInstaller.

Affects only the file name, not the mimetype.
Fixes #10004.


# 0fe33fd516d90b130a61d2540893f99a9963179a 07-Jul-2015 Augustin Cavalier <waddlesplash@gmail.com>

images/regular: Add Nebula to the default image.


# e22a18e9f340d6acefbc1b3269efe96c9a2aba78 10-Jun-2015 Jérôme Duval <jerome.duval@gmail.com>

Add a feature for expat.

* Icon-O-Matic and Cortex are dependent on the feature.
* remove expat lib from the build and from the tree.
* expat package is added to regular builds.


# 136a82ffc537e130239603e1b71bdbb803d1ffd7 12-Feb-2015 Augustin Cavalier <waddlesplash@gmail.com>

Cortex: add LoggingConsumer to the build.


# e611f1990742b9c56928510dc6caf0c26b865273 11-Feb-2015 Augustin Cavalier <waddlesplash@gmail.com>

gdb: outsource.

I didn't add the gdb package to the bundled packages because AFAIK,
most users / developers of Haiku use our built-in Debugger instead,
because it's so much more awesome (thanks, Ingo & Rene!).

If I'm somehow mistaken about that, please don't hesitate to speak
up and I'll add it.


# 0de25abadc86e260328c6f7c4255acbee8f70d4e 23-Dec-2014 Augustin Cavalier <waddlesplash@gmail.com>

bash_completion: delete from tree.

This was an old version of bash_completion and not included in the
image. An haikuports recipe is available if you need it.

Fixes #11660.

Signed-off-by: Adrien Destugues <pulkomandy@gmail.com>


# d181ea48edfc02ad567832ded5a14ce5cfba4d12 10-Dec-2014 Adrien Destugues <pulkomandy@gmail.com>

Add the ape reader to the image again.

Fixes #7048.


# 1abd97e2253aace04acaecf259ef12c704495c7c 26-Nov-2014 Adrien Destugues <pulkomandy@gmail.com>

Add SerialConnect to DeskBar menu.

It works well enough now.


# 0302849860907b8a390e1d0f3f7102730a4da776 17-Nov-2014 Adrien Destugues <pulkomandy@gmail.com>

Remove some unneeded file and partitionning systems

* googlefs: not working, needs update to match current page layout of
google searches
* Amiga and Apple partitionning systems: made them 68k and ppc-only,
respectively. There is not much use for those on x86 systems.

Also remove kdlhangman from the bootstrap packages.


# a122146848c4cad0daa09133df4dbee4482df400 26-Sep-2014 Adrien Destugues <pulkomandy@pulkomandy.tk>

Remove BSnow from the default image.

We get several users on IRC asking for help on how to disable it. It
doesn't even look good, uses a lot of CPU, and we have better (useful)
ways to demonstrate replicants on the desktop. So this demo has no use
anymore.


# 3ae6595c3930331b01ec7841b4770d6e20707fa5 18-Sep-2014 Adrien Destugues <pulkomandy@pulkomandy.tk>

Build fix.


# 88ef93a33cefb123c1e723c4c1f08feb05e6298d 27-Aug-2014 Jérôme Duval <jerome.duval@gmail.com>

RegularImage: filter translators based on features.


# 220d04022750f40f8bac8f01fa551211e28d04f2 31-Jul-2014 Oliver Tappe <zooey@hirschkaefer.de>

Use libstdc++, libsupc++ and libgcc from gcc_syslibs.

* Instead of faking libstdc++.so from libstdc++.a, use libstdc++.so
from the gcc_syslibs build feature for everything except x86_gcc2.
* Use libgcc_s.so from the gcc_syslibs build feature for everything but
x86_gcc2 (which still carries libgcc as part of libroot.so).
* Drop filtering of libgcc objects for libroot, as that is no longer
necessary since we're only using libgcc-as-single-object for libroot
with x86_gcc2, where the filtered object file doesn't exist. Should
the objects that used to be filtered cause any problems as part of
libgcc_s.so, we can always filter them as part of the gcc build.
* Use libsupc++.so from the gcc_syslibs build feature for everything but
x86_gcc2.
* Adjust all Jamfiles accordingly.
* Deactivate building of faked libstdc++.so for non-x86-gcc2. For
x86_gcc2, we still build libstdc++.so from the sources in the Haiku
source tree as part of the Haiku build .
* Put gcc_syslibs package onto the image, when needed.


# 1b4510eebfb4aa1975fef0c46f90f4a1dfd71159 25-Jul-2014 Oliver Tappe <zooey@hirschkaefer.de>

Put haiku repository onto image.

* Now that system updates seem to work properly, put the haiku
repository config and cache file onto the image automatically.
* Adjust URL of haiku repository (it is currently redirected
to some other URL at download.haiku-os.org, but that will be
changed later).


# 7481292e36e2da13e6221c010613d7f2f8edd8d6 08-Jul-2014 Augustin Cavalier <waddlesplash@gmail.com>

CDPlayer: remove from image & delete

* Does not work on recent hardware
* It now lives at: https://github.com/HaikuArchives/CDPlayer

Signed-off-by: Axel Dörfler <axeld@pinc-software.de>


# 9220bcf1f6d7aba809d790afc61b582a2d7e9f7b 04-Jul-2014 François Revol <revol@free.fr>

Add /bin/clipboard to the regular images

Seemed to have gone missing in action somehow.


# 20929296c9610c5b19d7a76aca3adf898a70a4df 16-Jun-2014 Adrien Destugues <pulkomandy@pulkomandy.tk>

Add RemoteDesktop to the image.

There are some rough edges, but this can be useful and deserves more
exposure.


# a407032259626eea4247e4654da2638edcf6ee4a 13-Jun-2014 John Scipione <jscipione@gmail.com>

build system: Add SoundRecorder to Deskbar

... in the "regular" image definition. Fixes #10932


# e70b99da6aaa35598cf069d9585a2df8938ec414 13-Jun-2014 John Scipione <jscipione@gmail.com>

build system: Replace tab wtih space


# 27843c6ffdd85dc13eadd874753e37e529dd786c 03-Jun-2014 Jérôme Duval <jerome.duval@gmail.com>

TIFFTranslator is now dependent on the tiff build feature.


# 9cd7c6a4338747b8ef15b38a06df188134248495 02-Jun-2014 Jérôme Duval <jerome.duval@gmail.com>

tiff: use the outsourced packages.

* packages for secondary architectures would be welcomed.


# 277f3ec68532b8deb8bb5e544e3c1e2dd90d7589 27-May-2014 czeidler <haiku@clemens-zeidler.de>

Add libalm to the regular system libs.

libalm.so is used by Stack & Tile as well as for the constraint-based
layout BALMLayout. This also adds libalm.so to the development package;
links it to /boot/system/development/lib.


# 0584f69356a0d8ca0f88dd476f16b8e1397ddca1 09-May-2014 Jérôme Duval <jerome.duval@gmail.com>

gutenprint: use outsourced package.

* data files are still in the source tree.
* gutenprint headers contain a image.h header file which collides
with ours. This is solved by forcing include search first on
os/kernel directory.


# 8c54af563ce823c0e5b029716b2a020896c90ff4 30-Apr-2014 Oliver Tappe <zooey@hirschkaefer.de>

Whitespace cleanup in root and 'build' folder.

* Removed trailing whitespace and empty lines at top of files.


# dff7d3a0f24a74b2be5884ebd8324f26cc8b87a2 16-Mar-2014 Oliver Tappe <zooey@hirschkaefer.de>

Add files missing in last commit, sorry.