summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Introduce mkimxboot to build bootloader images for the i.MX (only the fuze+ ↵Amaury Pouly2011-11-06
| | | | | | currently). Still not integrated in rbutil git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30920 a1c6a512-1295-4272-9138-f99709370657
* imxtools: add function to free instructionAmaury Pouly2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30919 a1c6a512-1295-4272-9138-f99709370657
* imxtools: add const and set pointer to NULL on free to avoid double freeAmaury Pouly2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30918 a1c6a512-1295-4272-9138-f99709370657
* Make usage of TALK_PARTIAL_LOAD actually Ondio specific. MMC is not always slow.Jens Arnold2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30917 a1c6a512-1295-4272-9138-f99709370657
* Voice related fixes and cleaupJens Arnold2011-11-06
| | | | | | | | | | | * Fix .talk clips on hwcodec. Voice does have the entire audio buffer available there. * Get rid of the separate TALK_PROGRESSIVE_LOAD in favour of the more advanced TALK_PARTIAL_LOAD i.e. use the latter on the Ondios as well. This gets rid of quite some ifdefing, and has the advantage that the voice file can be larger than the buffer (at a slight binsize cost). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30916 a1c6a512-1295-4272-9138-f99709370657
* elftosb: add staticAmaury Pouly2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30915 a1c6a512-1295-4272-9138-f99709370657
* imx233: don't include debug-imx233.c in bootloaderAmaury Pouly2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30914 a1c6a512-1295-4272-9138-f99709370657
* fuze+: scramble bootloader fileAmaury Pouly2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30913 a1c6a512-1295-4272-9138-f99709370657
* Fix warning and typos.Thomas Martitz2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30912 a1c6a512-1295-4272-9138-f99709370657
* Commit FS#12209 by Vencislav Atanasov: iPod 6g/classic usb product id Michael Sparmann2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30911 a1c6a512-1295-4272-9138-f99709370657
* hwcodec: fix shrink_callback resuming playback wrongly, and add checksThomas Martitz2011-11-06
| | | | | | | | if the voice is bigger than the audiobuffer. NOTE: This is the case on the sim so voice doesn't appear to work currently on hwcodec. Someone needs to verify on a real target. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30910 a1c6a512-1295-4272-9138-f99709370657
* Fix broken voice when .talk files are used and voice buffer calculation.Thomas Martitz2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30909 a1c6a512-1295-4272-9138-f99709370657
* iPod Classic: Set LCD controller configuration register during ↵Michael Sparmann2011-11-06
| | | | | | initialization and don't rely on the bootloader doing that (closes FS#12233) git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30908 a1c6a512-1295-4272-9138-f99709370657
* sbtools: rename to imxtools, move imx_hid_recovery to imxtools/sbloader, fix ↵Amaury Pouly2011-11-06
| | | | | | tools to correctly handle/free memory, properly return error codes git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30907 a1c6a512-1295-4272-9138-f99709370657
* usb-s3c6400x.c: Fix memory corruption bug (closes FS#12310)Michael Sparmann2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30906 a1c6a512-1295-4272-9138-f99709370657
* usb-s3c6400x.c: Remove an unused variableMichael Sparmann2011-11-06
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30905 a1c6a512-1295-4272-9138-f99709370657
* MPIO HD300: vastly improve sound quality. This unfortunately means reverting ↵Marcin Bukat2011-11-05
| | | | | | r28797 which introduced poping noise git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30904 a1c6a512-1295-4272-9138-f99709370657
* Sansa clip zip: do not enable display if it's already enabledBertrik Sikken2011-11-05
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30903 a1c6a512-1295-4272-9138-f99709370657
* Rework manual Makefile a bit.Dominik Riebeling2011-11-05
| | | | | | | | - move some stuff out of manual-prep and improve dependencies. - always update version information, version.sh is run anyway. - use $(SILENT) in more places to allow showing the commands. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30902 a1c6a512-1295-4272-9138-f99709370657
* Change cyrillic name in CREDITS to latin transliteration.Dominik Riebeling2011-11-05
| | | | | | | As discussed on IRC the cyrillic characters can cause various problems and not all fonts include them so stick with extended latin. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30901 a1c6a512-1295-4272-9138-f99709370657
* Fix FS#12279 - playback starts from the beginning when changing themes.Thomas Martitz2011-11-05
| | | | | | | | | | | Very frequent start-stop cycles (as caused by frequent core_alloc() calls) of audio makes the codecs lose the resume position, and this causes playback from the beginning. To work around, use queue_post() instead of queue_send() to delay the resume so that it only resumes once per core_alloc() set. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30900 a1c6a512-1295-4272-9138-f99709370657
* Rockbox Utility: polish translation update by Marcin Bukat (FS#12366).Dominik Riebeling2011-11-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30899 a1c6a512-1295-4272-9138-f99709370657
* Sansa clip zip: swap RGB<>BGR for WiseChip displayBertrik Sikken2011-11-04
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30898 a1c6a512-1295-4272-9138-f99709370657
* Make local functions and variables static where possibleBertrik Sikken2011-11-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30897 a1c6a512-1295-4272-9138-f99709370657
* Rockbox Utility: update german translation.Dominik Riebeling2011-11-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30896 a1c6a512-1295-4272-9138-f99709370657
* Rockbox Utility: update russian translation by Постолати Максим.Dominik Riebeling2011-11-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30895 a1c6a512-1295-4272-9138-f99709370657
* Properly initialize variable to get voice going again. GCC didn't catch this ↵Thomas Martitz2011-11-03
| | | | | | one introduced r30840. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30894 a1c6a512-1295-4272-9138-f99709370657
* In the playback buflib shrink callback, ensure a minimum buffer remains forThomas Martitz2011-11-03
| | | | | | | | | audio playback. If it goes below 256K new buflib allocations fail. This prevents buffer underruns as the new buffer size wasn't actually checked at all. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30893 a1c6a512-1295-4272-9138-f99709370657
* RockboxUtility: update dutch translationBertrik Sikken2011-11-03
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30892 a1c6a512-1295-4272-9138-f99709370657
* Added HiFiMAN HM-801 target. FS#12355. This also renames tda1543.{ch} used ↵Andrew Ryabinin2011-11-03
| | | | | | by HM-60x to dummy_codec.{ch} as it works for PCM1704 used by HM-801. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30891 a1c6a512-1295-4272-9138-f99709370657
* Sansa clip zip: show AMSv2 variant in debug menuBertrik Sikken2011-11-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30890 a1c6a512-1295-4272-9138-f99709370657
* fuze+: use macro and add a few staticAmaury Pouly2011-11-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30889 a1c6a512-1295-4272-9138-f99709370657
* Add me to docs/COMMITTERSAndrew Ryabinin2011-11-02
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30888 a1c6a512-1295-4272-9138-f99709370657
* Rename internal h10_5gb.ums name and add some comments.Dominik Riebeling2011-11-01
| | | | | | | | | | | | - When trying to retrieve the human readable device name on target mismatch detection it is not possible to figure the "extra" variant internally used from the information in rockbox-info.txt. Since the h10_5gb didn't have a non-extra version resolving the name would fail. Remove the extra part for the UMS version so that will get used. It's better to display a slightly wrong name instead of none. - Add some comments describing the sections and their values. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30887 a1c6a512-1295-4272-9138-f99709370657
* Show user friendly name on target mismatch.Dominik Riebeling2011-11-01
| | | | | | Instead of showing the target name as stored in rockbox-info.txt retrieve the full descriptive name. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30886 a1c6a512-1295-4272-9138-f99709370657
* Fix Gigabeat S configure string.Dominik Riebeling2011-11-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30885 a1c6a512-1295-4272-9138-f99709370657
* Revert r30869 "Remove buildserver_modelname value."Dominik Riebeling2011-11-01
| | | | | | | The buildserver_modelname is still in use, and the commit missed some parts on removal, causing segfaults on start. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30884 a1c6a512-1295-4272-9138-f99709370657
* Add missing copyright headerAmaury Pouly2011-11-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30883 a1c6a512-1295-4272-9138-f99709370657
* sbtoos: restore elf extraction functionality of sbtoelfAmaury Pouly2011-11-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30882 a1c6a512-1295-4272-9138-f99709370657
* sbtools: move sb reading from sbtoelf.c to sb.c with a proper interface, fix ↵Amaury Pouly2011-11-01
| | | | | | sb production bug, fix ugly code, add sb dump code and sbtoelf loopback facility git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30881 a1c6a512-1295-4272-9138-f99709370657
* sbtools: rework the color hack and add switch to disable color outputAmaury Pouly2011-11-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30880 a1c6a512-1295-4272-9138-f99709370657
* Fix playlist catalog directory manual spellingFrank Gevaerts2011-11-01
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30879 a1c6a512-1295-4272-9138-f99709370657
* Add Clip Zip as unstableFrank Gevaerts2011-10-31
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30875 a1c6a512-1295-4272-9138-f99709370657
* Sansa clip zip: attempt to fix the pixel format swappedness for goodBertrik Sikken2011-10-31
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30873 a1c6a512-1295-4272-9138-f99709370657
* Sansa clip zip: implement lcd_write_data functionBertrik Sikken2011-10-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30872 a1c6a512-1295-4272-9138-f99709370657
* Sansa clip zip: use a state machine for scanning buttons to avoid busy-waitsBertrik Sikken2011-10-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30871 a1c6a512-1295-4272-9138-f99709370657
* Fix simulator brightness calculation in case MIN_BRIGHTNESS_SETTING != 1Bertrik Sikken2011-10-30
| | | | git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30870 a1c6a512-1295-4272-9138-f99709370657
* Remove buildserver_modelname value.Dominik Riebeling2011-10-30
| | | | | | | | Since changing the manual URL creation to be template based this value isn't used anymore. It's also pretty much the same as configure_modelname, so remove it completely. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30869 a1c6a512-1295-4272-9138-f99709370657
* Rockbox Utility: allow building for 32bit on 64bit Linux.Dominik Riebeling2011-10-30
| | | | | | | | | When building the linked libraries pass the machine flag as well. For now add them to the compiler variable directly, should go via CFLAGS later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30868 a1c6a512-1295-4272-9138-f99709370657
* Gigabeat S: Maintain power thread at realtime priority at all times so it ↵Michael Sevakis2011-10-30
| | | | | | may always service the watchdog on time regardless of playback priority. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30867 a1c6a512-1295-4272-9138-f99709370657