summaryrefslogtreecommitdiff
path: root/cleopatre/buildroot/package
AgeCommit message (Collapse)Author
2013-03-08cleo/{buildroot/package, app/fw_wd}: update fw_wd makefile rulesThierry Carré
add "-Wall" option
2013-03-08cleo/{buildroot/package, app/afe}: update afe makefile rulesThierry Carré
add "-Wall" option
2013-03-08cleo/{buildroot/package, app/lltd}: update lltd makefile rulesThierry Carré
add "-Wall" option
2013-03-08cleo/{buildroot/package, app/igmp_snoopd}: update igmp_snoopd makefile rulesThierry Carré
- use libspid-config script - add libs dependencies, but don't compile them
2013-03-08cleo/{buildroot/package, app/spidapp}: update spidapp makefile rulesThierry Carré
- use libspid-config script - add "-Wall" option - add libs dependencies, but don't compile them
2013-03-08cleo/{buildroot/package, app/spidinit}: update spidinit makefile rulesThierry Carré
- use libspid-config script - add "-Wall" option - add libs dependencies, but don't compile them
2013-03-08cleo/{buildroot/package, app/pmd}: update pmd makefile rulesThierry Carré
- use libspid-config script - add "-Wall" option - add libs dependencies, but don't compile them
2013-03-08cleo/{buildroot/package, app/managerd}: update managerd makefile rulesThierry Carré
- use libspid-config script - add "-Wall" option - add libs dependencies, but don't compile them
2013-03-08cleo/{buildroot/package, app/libspid}: fix libspid and libmme makefileThierry Carré
Fix few problems, like: - Compilation with many jobs (make -j). Applications which need libs compile after libs. - Don't re-compile libspid when no source change.
2013-03-08cleo/buildroot/package: add explicit targetThierry Carré
2013-03-08cleo/buildroot/package: replace 'cd' by 'make -C'Thierry Carré
2013-01-18cleo/buildroot/package/pmd: select pmd for MSE500 boards, refs #3636Olivier Dufour
Prior to this commit, only AV MSE500 board could have it, but we need it for MCR500 and MPR520.
2012-12-21cleo/app/pmd: add a daemon to handle power state changes, closes #2633Olivier Dufour
pmd polls /proc/pm/suspend_cmd, and triggers the suspend script when the criterias are matched. The criterias are defined and handled by the kernel, pmd only reads the status entry and triggers the script, as it cannot be done from kernel space.
2012-12-20cleo/buildroot/package/mtd: add missing dependency for lzo, refs #3616Jérémy Dufour
When build mtd, some headers of the package lzo are required (note: this dependency exists in the mtd-utils.git mk file).
2012-12-20cleo/buildroot/package/zlib: add missing mkdir directive, refs #3616Jérémy Dufour
This patch is coming from commit 52f993ba79a0e136562b342ad53a042443276f17. I think, it is not required, but it is linked to a missing dependency somewhere in buildroot.
2012-12-20cleo/buildroot/package/mtd: add missing LDFLAGS to link with zlib, refs #3616Jérémy Dufour
This patch is coming from commit 52f993ba79a0e136562b342ad53a042443276f17.
2012-12-18cleo/buildroot/package/mtd: flash_eraseall by partition size, closes #3520Jérémy Dufour
When erasing a flash partition, flash_eraseall erases it sector by sector. This is the job of the driver. flash_eraseall now erases directly the whole partition in one time.
2012-12-11cleo/buildroot/pkg/busybox.mk: fix dependencies for custom version, closes #3513Yacine Belkadi
In the case of a custom busybox version (source directory), the dependency on the creation of the $(BUSYBOX_DIR) was incorrect (The "build_dir" was always re-made). As a result, some parts of busybox were unnecessarily rebuilt and the "install" target was unnecessarily re-made. Fix that by using a dummy file "$(BUSYBOX_DIR)/.dir".
2012-12-04cleo/buildroot/plcdrv: enable AES on MSE500, closes #3566Olivier Dufour
The plc rom works now for both SPC300 and MSE500.
2012-12-04cleo/buildroot/plcd: allow chip specific compilation, closes #3569Olivier Dufour
2012-11-30cleo/buildroot: add a Makefile to create response file, refs #3416Olivier Dufour
When invoking make xxx_defconfig, a response file containing all extra defines needed by applications to correctly use NVRAM is created.
2012-11-29cleo/buildroot: add MSE500 in bundle generation, closes #3418Olivier Dufour
BR2_TARGET_SPIDCOM_BOARD allows generic board configuration. BR2_TARGET_SPIDCOM_CHIP allows to use chip specific binaries. It is now easier to add a new board, and support multiple chips.
2012-11-29cleo/Makefile: binaries are generated using buildroot, closes #3257Olivier Dufour
2012-11-29cleo/buildroot/package: create a separated package for plcd, closes #3259Olivier Dufour
2012-09-20cesar/hal/phy: always bypass AES on MSE500, refs #3356Cyril Jourdan
2012-09-07cleo/app/fw_wd: move fwwatchd start earlier, closes #3208Nicolas Schodet
The fwwatchd start script will clean previously dumped traces. Do it early so that any following script will have sufficient room on the user file system.
2012-09-07cleo/app/fw_wd: clean up trace files at startup, refs #3208Nicolas Schodet
2012-09-06cleo/buildroot/pkg/busybox: build out of source tree, refs #3258Yacine Belkadi
After the preparation done by previous commits, this one enables building the custom busybox version out of its source tree, just like non-custom versions. In addition to homogeneity with other buildroot packages, the cleaning part becomes simpler, and the issue with clean/distclean disappears.
2012-09-06cleo/buildroot/pkg/busybox: some renaming, refs #3258Yacine Belkadi
2012-09-06cleo/buildroot/pkg/busybox: add the BUSYBOX_MAKE_DIRS variable, refs #3258Yacine Belkadi
Add the new BUSYBOX_MAKE_DIRS variable, in order to be able to customize which directories get passed to busybox's make.
2012-09-06cleo/buildroot/pkg/busybox: remove the TARGET_UNPACKED variable, refs #3258Yacine Belkadi
The ".patched" step is only done for non-custom busybox versions. And it always depends on the ".unpacked" step. So the TARGET_UNPACKED is no longer needed.
2012-09-06cleo/buildroot/pkg/busybox: rename patched2 to patched, refs #3258Yacine Belkadi
As there isn't a ".patched1" anymore, just rename ".patched2" to ".patched".
2012-09-06cleo/{buildroot/pkg/busybox,busybox}: remove .patched1, refs #3258Yacine Belkadi
Due to previous changes, ".patched1" is not needed anymore.
2012-09-06cleo/buildroot/pkg/busybox: remove outdated/unused code, refs #3258Yacine Belkadi
The code is removed for the following reasons: - it doesn't actually do anything. There is no "-i" or redirection of sed's output. - the "#include busybox.h" line that the command looks for in init/init.c, disappeared long ago, in version 1.6 of busybox. (busybox commit b6adbf1be29841501cc49917249e85f273e1df7c) - buildroot removed that line from their source code. (buildroot commit 7d814728ae38c5479ddb8b519eeb182f756f4291) - it will allow to remove ".patched1" and simplify things for custom busybox versions.
2012-07-18cleo/{buildroot, managerd}: add CONFIG_EXTRA_LEDS, refs #3240Yacine Belkadi
Instead of depending directly on the board type (SPK300 or SPK300G) in the code, depend on a config option. This option is set, depending on the board, at buildroot's level. The main objective of the changes is to remove the dependency that managerd had on the "autoconf.h" file of the Linux Kernel. NB: The "#if defined" in gpio_event.h included CONFIG_MACH_SPK310, but not the other ones in gpio_event.c. So in reality, the feature was not available for SPK310. So this commit enables it only for SPK300 and SPK300G.
2012-07-18cleo/{buildroot,managerd,utests}[eoc-drv]: add config file for managerd, ↵Yacine Belkadi
refs #3240 To prepare for subsequent changes, this commit creates a config file to contain configuration options for managerd.
2012-06-28cleo/buildroot/busybox: fix busybox-clean, refs #3085Yacine Belkadi
On a cleopatre/buildroot$ make clean distclean the cleopatre/busybox-1.11.1-spc300 was not sufficiently cleaned. Ideally, a busybox-mrproper would be done on buildroot-distclean, but buildroot doesn't expect packages to expose a distclean target. So with this commit, busybox-mrproper is called on buildroot-clean.
2012-06-27cleo/buildroot/pkg/busybox: unhide BR2_BUSYBOX_VERSION_CUSTOM, closes #3085Yacine Belkadi
Now that the defconfig_files have been updated, the temporary "if" can be removed.
2012-06-27cleo/buildroot/pkg/busybox/makefile: cause a rebuild if the sources change, ↵Yacine Belkadi
refs #3085 Adapt the Makefile to cause a rebuild of the busybox package when the sources change.
2012-06-27cleo/buildroot/pkg/busybox: add support for custom version, refs #3085Yacine Belkadi
Add the possibility to use a custom version of busybox from a specified source directory. The makefile of busybox is adapted to handle the case when the sources are already prepared.
2012-06-27cleo/buildroot/pkg/busybox/makefile: split .patched into .patched1 and ↵Yacine Belkadi
.patched2, refs #3085 In the makefile of the busybox package, ".patched" indicates that: - changes due to the .config file have been applied to the sources - patches have been applied. As a preparation for upcomming changes, we need to dissociate these two operations. If the sources are already patched, only the part regarding the .config file needs to be done. This commits splits ".patched" into ".patched1" and ".patched2".
2012-06-27cleo/buildroot/pkg/busybox/makefile: split .unpacked into .unpacked and ↵Yacine Belkadi
.patched, refs #3085 In the makefile of the busybox package, .unpacked indicates that the sources have been prepared, ie: downloaded + extracted + patched. As a preparation for upcomming changes, we need to dissociate the (download + extraction) part from the application of patches. For example, if we already have the sources, we don't need to download and extract them. This commit splits ".unpacked" into ".unpacked" and ".patched".
2012-05-28cleo/buildroot/package: force spidcom apps compilation, refs #2241Cyril Jourdan
2012-02-20cesar, cleopatre, common: new ipmbox design, closes #848IPMbox Team
2012-02-10cleo/devkit/plcdrv: remove gidel and move arm dir content to plcdrv, refs #848Cyril Jourdan
2011-12-20cleo/app/fw_wd: split fwwatchd into init script and daemonNicolas Schodet
2011-12-20cleo/app/fw_wd: rename from trace to fwwatchd (firmware watch daemon)Nicolas Schodet
2011-10-13cleo: add/update some .gitignore files, closes #2773Yacine Belkadi
Add and/or update some .gitignore files to get a clean "git status" result.
2011-05-06cleo/app/igmp_snoopd: add config file, #closes #2373Yacine Belkadi
- add a config file: igmp_snoopd.conf. - replace the command line options by key/values in the config file.
2011-03-07cleo/{buildroot, app/igmp_snoopd}: add igmp_snoopd to buildroot and init.d, ↵Yacine Belkadi
closes #2204 - Add igmp_snoopd to the global build process. - Start igmp_snoopd at boot.