* [Buildroot] [PATCH 1/2] busybox: add fbset to default configs
@ 2014-06-01 17:37 Hadrien Boutteville
2014-06-01 17:37 ` [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency Hadrien Boutteville
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Hadrien Boutteville @ 2014-06-01 17:37 UTC (permalink / raw)
To: buildroot
Some drivers (like ti-gfx) need fbset and we can't select it when we
use BusyBox because it is provided by BusyBox and as a package.
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
---
package/busybox/busybox-1.19.x.config | 6 +++---
package/busybox/busybox-1.20.x.config | 6 +++---
package/busybox/busybox-1.21.x.config | 6 +++---
package/busybox/busybox-1.22.x.config | 6 +++---
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/package/busybox/busybox-1.19.x.config b/package/busybox/busybox-1.19.x.config
index bf5e8df..08e14c7 100644
--- a/package/busybox/busybox-1.19.x.config
+++ b/package/busybox/busybox-1.19.x.config
@@ -525,9 +525,9 @@ CONFIG_BLKID=y
# CONFIG_FEATURE_BLKID_TYPE is not set
CONFIG_DMESG=y
CONFIG_FEATURE_DMESG_PRETTY=y
-# CONFIG_FBSET is not set
-# CONFIG_FEATURE_FBSET_FANCY is not set
-# CONFIG_FEATURE_FBSET_READMODE is not set
+CONFIG_FBSET=y
+CONFIG_FEATURE_FBSET_FANCY=y
+CONFIG_FEATURE_FBSET_READMODE=y
CONFIG_FDFLUSH=y
CONFIG_FDFORMAT=y
# CONFIG_FDISK is not set
diff --git a/package/busybox/busybox-1.20.x.config b/package/busybox/busybox-1.20.x.config
index 5525434..085d43c 100644
--- a/package/busybox/busybox-1.20.x.config
+++ b/package/busybox/busybox-1.20.x.config
@@ -539,9 +539,9 @@ CONFIG_BLKID=y
# CONFIG_FEATURE_BLKID_TYPE is not set
CONFIG_DMESG=y
CONFIG_FEATURE_DMESG_PRETTY=y
-# CONFIG_FBSET is not set
-# CONFIG_FEATURE_FBSET_FANCY is not set
-# CONFIG_FEATURE_FBSET_READMODE is not set
+CONFIG_FBSET=y
+CONFIG_FEATURE_FBSET_FANCY=y
+CONFIG_FEATURE_FBSET_READMODE=y
CONFIG_FDFLUSH=y
CONFIG_FDFORMAT=y
# CONFIG_FDISK is not set
diff --git a/package/busybox/busybox-1.21.x.config b/package/busybox/busybox-1.21.x.config
index e46b528..fbae26e 100644
--- a/package/busybox/busybox-1.21.x.config
+++ b/package/busybox/busybox-1.21.x.config
@@ -541,9 +541,9 @@ CONFIG_BLKID=y
# CONFIG_FEATURE_BLKID_TYPE is not set
CONFIG_DMESG=y
CONFIG_FEATURE_DMESG_PRETTY=y
-# CONFIG_FBSET is not set
-# CONFIG_FEATURE_FBSET_FANCY is not set
-# CONFIG_FEATURE_FBSET_READMODE is not set
+CONFIG_FBSET=y
+CONFIG_FEATURE_FBSET_FANCY=y
+CONFIG_FEATURE_FBSET_READMODE=y
CONFIG_FDFLUSH=y
CONFIG_FDFORMAT=y
# CONFIG_FDISK is not set
diff --git a/package/busybox/busybox-1.22.x.config b/package/busybox/busybox-1.22.x.config
index e8db3bc..544b82f 100644
--- a/package/busybox/busybox-1.22.x.config
+++ b/package/busybox/busybox-1.22.x.config
@@ -544,9 +544,9 @@ CONFIG_BLKID=y
# CONFIG_FEATURE_BLKID_TYPE is not set
CONFIG_DMESG=y
CONFIG_FEATURE_DMESG_PRETTY=y
-# CONFIG_FBSET is not set
-# CONFIG_FEATURE_FBSET_FANCY is not set
-# CONFIG_FEATURE_FBSET_READMODE is not set
+CONFIG_FBSET=y
+CONFIG_FEATURE_FBSET_FANCY=y
+CONFIG_FEATURE_FBSET_READMODE=y
CONFIG_FDFLUSH=y
CONFIG_FDFORMAT=y
# CONFIG_FDISK is not set
--
1.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread* [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency
2014-06-01 17:37 [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Hadrien Boutteville
@ 2014-06-01 17:37 ` Hadrien Boutteville
2014-06-01 17:43 ` Yann E. MORIN
2014-06-02 20:05 ` Peter Korsgaard
2014-06-01 17:42 ` [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Yann E. MORIN
2014-06-02 20:05 ` Peter Korsgaard
2 siblings, 2 replies; 8+ messages in thread
From: Hadrien Boutteville @ 2014-06-01 17:37 UTC (permalink / raw)
To: buildroot
Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
---
package/ti-gfx/Config.in | 1 +
1 file changed, 1 insertion(+)
diff --git a/package/ti-gfx/Config.in b/package/ti-gfx/Config.in
index 3e8648e..4ee8622 100644
--- a/package/ti-gfx/Config.in
+++ b/package/ti-gfx/Config.in
@@ -3,6 +3,7 @@ config BR2_PACKAGE_TI_GFX
select BR2_PACKAGE_HAS_LIBEGL
select BR2_PACKAGE_HAS_LIBGLES
select BR2_PACKAGE_HAS_POWERVR
+ select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
help
Graphics libraries for TI boards.
--
1.9.3
^ permalink raw reply related [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency
2014-06-01 17:37 ` [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency Hadrien Boutteville
@ 2014-06-01 17:43 ` Yann E. MORIN
2014-06-01 18:01 ` Spenser Gilliland
2014-06-02 20:05 ` Peter Korsgaard
1 sibling, 1 reply; 8+ messages in thread
From: Yann E. MORIN @ 2014-06-01 17:43 UTC (permalink / raw)
To: buildroot
Hadrien, All,
On 2014-06-01 19:37 +0200, Hadrien Boutteville spake thusly:
> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/ti-gfx/Config.in | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/package/ti-gfx/Config.in b/package/ti-gfx/Config.in
> index 3e8648e..4ee8622 100644
> --- a/package/ti-gfx/Config.in
> +++ b/package/ti-gfx/Config.in
> @@ -3,6 +3,7 @@ config BR2_PACKAGE_TI_GFX
> select BR2_PACKAGE_HAS_LIBEGL
> select BR2_PACKAGE_HAS_LIBGLES
> select BR2_PACKAGE_HAS_POWERVR
> + select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
> depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
> help
> Graphics libraries for TI boards.
> --
> 1.9.3
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency
2014-06-01 17:43 ` Yann E. MORIN
@ 2014-06-01 18:01 ` Spenser Gilliland
0 siblings, 0 replies; 8+ messages in thread
From: Spenser Gilliland @ 2014-06-01 18:01 UTC (permalink / raw)
To: buildroot
Hadrien,
On Sun, Jun 1, 2014 at 12:43 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Hadrien, All,
>
> On 2014-06-01 19:37 +0200, Hadrien Boutteville spake thusly:
>> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
>
> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
>
Acked-by: "Spenser Gilliland" <spenser@gillilanding.com>
> Regards,
> Yann E. MORIN.
>
>> ---
>> package/ti-gfx/Config.in | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/package/ti-gfx/Config.in b/package/ti-gfx/Config.in
>> index 3e8648e..4ee8622 100644
>> --- a/package/ti-gfx/Config.in
>> +++ b/package/ti-gfx/Config.in
>> @@ -3,6 +3,7 @@ config BR2_PACKAGE_TI_GFX
>> select BR2_PACKAGE_HAS_LIBEGL
>> select BR2_PACKAGE_HAS_LIBGLES
>> select BR2_PACKAGE_HAS_POWERVR
>> + select BR2_PACKAGE_FBSET if !BR2_PACKAGE_BUSYBOX # Runtime dependency only
>> depends on BR2_LINUX_KERNEL && BR2_TOOLCHAIN_USES_GLIBC && BR2_arm
>> help
>> Graphics libraries for TI boards.
>> --
>> 1.9.3
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
> --
> .-----------------.--------------------.------------------.--------------------.
> | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
> | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
Spenser Gilliland
Computer Engineer
Doctoral Candidate
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency
2014-06-01 17:37 ` [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency Hadrien Boutteville
2014-06-01 17:43 ` Yann E. MORIN
@ 2014-06-02 20:05 ` Peter Korsgaard
1 sibling, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2014-06-02 20:05 UTC (permalink / raw)
To: buildroot
>>>>> "Hadrien" == Hadrien Boutteville <hadrien.boutteville@gmail.com> writes:
> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] busybox: add fbset to default configs
2014-06-01 17:37 [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Hadrien Boutteville
2014-06-01 17:37 ` [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency Hadrien Boutteville
@ 2014-06-01 17:42 ` Yann E. MORIN
2014-06-01 18:02 ` Spenser Gilliland
2014-06-02 20:05 ` Peter Korsgaard
2 siblings, 1 reply; 8+ messages in thread
From: Yann E. MORIN @ 2014-06-01 17:42 UTC (permalink / raw)
To: buildroot
Hadrien, All,
On 2014-06-01 19:37 +0200, Hadrien Boutteville spake thusly:
> Some drivers (like ti-gfx) need fbset and we can't select it when we
> use BusyBox because it is provided by BusyBox and as a package.
>
> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Regards,
Yann E. MORIN.
> ---
> package/busybox/busybox-1.19.x.config | 6 +++---
> package/busybox/busybox-1.20.x.config | 6 +++---
> package/busybox/busybox-1.21.x.config | 6 +++---
> package/busybox/busybox-1.22.x.config | 6 +++---
> 4 files changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/package/busybox/busybox-1.19.x.config b/package/busybox/busybox-1.19.x.config
> index bf5e8df..08e14c7 100644
> --- a/package/busybox/busybox-1.19.x.config
> +++ b/package/busybox/busybox-1.19.x.config
> @@ -525,9 +525,9 @@ CONFIG_BLKID=y
> # CONFIG_FEATURE_BLKID_TYPE is not set
> CONFIG_DMESG=y
> CONFIG_FEATURE_DMESG_PRETTY=y
> -# CONFIG_FBSET is not set
> -# CONFIG_FEATURE_FBSET_FANCY is not set
> -# CONFIG_FEATURE_FBSET_READMODE is not set
> +CONFIG_FBSET=y
> +CONFIG_FEATURE_FBSET_FANCY=y
> +CONFIG_FEATURE_FBSET_READMODE=y
> CONFIG_FDFLUSH=y
> CONFIG_FDFORMAT=y
> # CONFIG_FDISK is not set
> diff --git a/package/busybox/busybox-1.20.x.config b/package/busybox/busybox-1.20.x.config
> index 5525434..085d43c 100644
> --- a/package/busybox/busybox-1.20.x.config
> +++ b/package/busybox/busybox-1.20.x.config
> @@ -539,9 +539,9 @@ CONFIG_BLKID=y
> # CONFIG_FEATURE_BLKID_TYPE is not set
> CONFIG_DMESG=y
> CONFIG_FEATURE_DMESG_PRETTY=y
> -# CONFIG_FBSET is not set
> -# CONFIG_FEATURE_FBSET_FANCY is not set
> -# CONFIG_FEATURE_FBSET_READMODE is not set
> +CONFIG_FBSET=y
> +CONFIG_FEATURE_FBSET_FANCY=y
> +CONFIG_FEATURE_FBSET_READMODE=y
> CONFIG_FDFLUSH=y
> CONFIG_FDFORMAT=y
> # CONFIG_FDISK is not set
> diff --git a/package/busybox/busybox-1.21.x.config b/package/busybox/busybox-1.21.x.config
> index e46b528..fbae26e 100644
> --- a/package/busybox/busybox-1.21.x.config
> +++ b/package/busybox/busybox-1.21.x.config
> @@ -541,9 +541,9 @@ CONFIG_BLKID=y
> # CONFIG_FEATURE_BLKID_TYPE is not set
> CONFIG_DMESG=y
> CONFIG_FEATURE_DMESG_PRETTY=y
> -# CONFIG_FBSET is not set
> -# CONFIG_FEATURE_FBSET_FANCY is not set
> -# CONFIG_FEATURE_FBSET_READMODE is not set
> +CONFIG_FBSET=y
> +CONFIG_FEATURE_FBSET_FANCY=y
> +CONFIG_FEATURE_FBSET_READMODE=y
> CONFIG_FDFLUSH=y
> CONFIG_FDFORMAT=y
> # CONFIG_FDISK is not set
> diff --git a/package/busybox/busybox-1.22.x.config b/package/busybox/busybox-1.22.x.config
> index e8db3bc..544b82f 100644
> --- a/package/busybox/busybox-1.22.x.config
> +++ b/package/busybox/busybox-1.22.x.config
> @@ -544,9 +544,9 @@ CONFIG_BLKID=y
> # CONFIG_FEATURE_BLKID_TYPE is not set
> CONFIG_DMESG=y
> CONFIG_FEATURE_DMESG_PRETTY=y
> -# CONFIG_FBSET is not set
> -# CONFIG_FEATURE_FBSET_FANCY is not set
> -# CONFIG_FEATURE_FBSET_READMODE is not set
> +CONFIG_FBSET=y
> +CONFIG_FEATURE_FBSET_FANCY=y
> +CONFIG_FEATURE_FBSET_READMODE=y
> CONFIG_FDFLUSH=y
> CONFIG_FDFORMAT=y
> # CONFIG_FDISK is not set
> --
> 1.9.3
>
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
.-----------------.--------------------.------------------.--------------------.
| Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
| +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
| +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
| http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
'------------------------------^-------^------------------^--------------------'
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] busybox: add fbset to default configs
2014-06-01 17:42 ` [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Yann E. MORIN
@ 2014-06-01 18:02 ` Spenser Gilliland
0 siblings, 0 replies; 8+ messages in thread
From: Spenser Gilliland @ 2014-06-01 18:02 UTC (permalink / raw)
To: buildroot
Hadrien,
On Sun, Jun 1, 2014 at 12:42 PM, Yann E. MORIN <yann.morin.1998@free.fr> wrote:
> Hadrien, All,
>
> On 2014-06-01 19:37 +0200, Hadrien Boutteville spake thusly:
>> Some drivers (like ti-gfx) need fbset and we can't select it when we
>> use BusyBox because it is provided by BusyBox and as a package.
>>
>> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
>
> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Acked-by: "Spenser Gilliland" <spenser@gillilanding.com>
>
> Regards,
> Yann E. MORIN.
>
>> ---
>> package/busybox/busybox-1.19.x.config | 6 +++---
>> package/busybox/busybox-1.20.x.config | 6 +++---
>> package/busybox/busybox-1.21.x.config | 6 +++---
>> package/busybox/busybox-1.22.x.config | 6 +++---
>> 4 files changed, 12 insertions(+), 12 deletions(-)
>>
>> diff --git a/package/busybox/busybox-1.19.x.config b/package/busybox/busybox-1.19.x.config
>> index bf5e8df..08e14c7 100644
>> --- a/package/busybox/busybox-1.19.x.config
>> +++ b/package/busybox/busybox-1.19.x.config
>> @@ -525,9 +525,9 @@ CONFIG_BLKID=y
>> # CONFIG_FEATURE_BLKID_TYPE is not set
>> CONFIG_DMESG=y
>> CONFIG_FEATURE_DMESG_PRETTY=y
>> -# CONFIG_FBSET is not set
>> -# CONFIG_FEATURE_FBSET_FANCY is not set
>> -# CONFIG_FEATURE_FBSET_READMODE is not set
>> +CONFIG_FBSET=y
>> +CONFIG_FEATURE_FBSET_FANCY=y
>> +CONFIG_FEATURE_FBSET_READMODE=y
>> CONFIG_FDFLUSH=y
>> CONFIG_FDFORMAT=y
>> # CONFIG_FDISK is not set
>> diff --git a/package/busybox/busybox-1.20.x.config b/package/busybox/busybox-1.20.x.config
>> index 5525434..085d43c 100644
>> --- a/package/busybox/busybox-1.20.x.config
>> +++ b/package/busybox/busybox-1.20.x.config
>> @@ -539,9 +539,9 @@ CONFIG_BLKID=y
>> # CONFIG_FEATURE_BLKID_TYPE is not set
>> CONFIG_DMESG=y
>> CONFIG_FEATURE_DMESG_PRETTY=y
>> -# CONFIG_FBSET is not set
>> -# CONFIG_FEATURE_FBSET_FANCY is not set
>> -# CONFIG_FEATURE_FBSET_READMODE is not set
>> +CONFIG_FBSET=y
>> +CONFIG_FEATURE_FBSET_FANCY=y
>> +CONFIG_FEATURE_FBSET_READMODE=y
>> CONFIG_FDFLUSH=y
>> CONFIG_FDFORMAT=y
>> # CONFIG_FDISK is not set
>> diff --git a/package/busybox/busybox-1.21.x.config b/package/busybox/busybox-1.21.x.config
>> index e46b528..fbae26e 100644
>> --- a/package/busybox/busybox-1.21.x.config
>> +++ b/package/busybox/busybox-1.21.x.config
>> @@ -541,9 +541,9 @@ CONFIG_BLKID=y
>> # CONFIG_FEATURE_BLKID_TYPE is not set
>> CONFIG_DMESG=y
>> CONFIG_FEATURE_DMESG_PRETTY=y
>> -# CONFIG_FBSET is not set
>> -# CONFIG_FEATURE_FBSET_FANCY is not set
>> -# CONFIG_FEATURE_FBSET_READMODE is not set
>> +CONFIG_FBSET=y
>> +CONFIG_FEATURE_FBSET_FANCY=y
>> +CONFIG_FEATURE_FBSET_READMODE=y
>> CONFIG_FDFLUSH=y
>> CONFIG_FDFORMAT=y
>> # CONFIG_FDISK is not set
>> diff --git a/package/busybox/busybox-1.22.x.config b/package/busybox/busybox-1.22.x.config
>> index e8db3bc..544b82f 100644
>> --- a/package/busybox/busybox-1.22.x.config
>> +++ b/package/busybox/busybox-1.22.x.config
>> @@ -544,9 +544,9 @@ CONFIG_BLKID=y
>> # CONFIG_FEATURE_BLKID_TYPE is not set
>> CONFIG_DMESG=y
>> CONFIG_FEATURE_DMESG_PRETTY=y
>> -# CONFIG_FBSET is not set
>> -# CONFIG_FEATURE_FBSET_FANCY is not set
>> -# CONFIG_FEATURE_FBSET_READMODE is not set
>> +CONFIG_FBSET=y
>> +CONFIG_FEATURE_FBSET_FANCY=y
>> +CONFIG_FEATURE_FBSET_READMODE=y
>> CONFIG_FDFLUSH=y
>> CONFIG_FDFORMAT=y
>> # CONFIG_FDISK is not set
>> --
>> 1.9.3
>>
>> _______________________________________________
>> buildroot mailing list
>> buildroot at busybox.net
>> http://lists.busybox.net/mailman/listinfo/buildroot
>
> --
> .-----------------.--------------------.------------------.--------------------.
> | Yann E. MORIN | Real-Time Embedded | /"\ ASCII RIBBON | Erics' conspiracy: |
> | +33 662 376 056 | Software Designer | \ / CAMPAIGN | ___ |
> | +33 223 225 172 `------------.-------: X AGAINST | \e/ There is no |
> | http://ymorin.is-a-geek.org/ | _/*\_ | / \ HTML MAIL | v conspiracy. |
> '------------------------------^-------^------------------^--------------------'
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
--
Spenser Gilliland
Computer Engineer
Doctoral Candidate
^ permalink raw reply [flat|nested] 8+ messages in thread
* [Buildroot] [PATCH 1/2] busybox: add fbset to default configs
2014-06-01 17:37 [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Hadrien Boutteville
2014-06-01 17:37 ` [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency Hadrien Boutteville
2014-06-01 17:42 ` [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Yann E. MORIN
@ 2014-06-02 20:05 ` Peter Korsgaard
2 siblings, 0 replies; 8+ messages in thread
From: Peter Korsgaard @ 2014-06-02 20:05 UTC (permalink / raw)
To: buildroot
>>>>> "Hadrien" == Hadrien Boutteville <hadrien.boutteville@gmail.com> writes:
> Some drivers (like ti-gfx) need fbset and we can't select it when we
> use BusyBox because it is provided by BusyBox and as a package.
> Signed-off-by: Hadrien Boutteville <hadrien.boutteville@gmail.com>
Committed, thanks.
--
Bye, Peter Korsgaard
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2014-06-02 20:05 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-01 17:37 [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Hadrien Boutteville
2014-06-01 17:37 ` [Buildroot] [PATCH 2/2] ti-gfx: select fbset as it is a runtime dependency Hadrien Boutteville
2014-06-01 17:43 ` Yann E. MORIN
2014-06-01 18:01 ` Spenser Gilliland
2014-06-02 20:05 ` Peter Korsgaard
2014-06-01 17:42 ` [Buildroot] [PATCH 1/2] busybox: add fbset to default configs Yann E. MORIN
2014-06-01 18:02 ` Spenser Gilliland
2014-06-02 20:05 ` Peter Korsgaard
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox