aboutsummaryrefslogtreecommitdiffstats
path: root/small
AgeCommit message (Collapse)Author
2023-07-06cfg/net: remove CONFIG_NET_SCH_DSMARKBruce Ashfield
commit bbe77c14ee6185a61b [net/sched: Retire dsmark qdisc] upstream has removed CONFIG_NET_SCH_DSMARK so we drop it from our fragments as well. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2023-07-06net/cfg: remove CONFIG_NET_SCH_CBQBruce Ashfield
commit 051d442098421c28c7 [net/sched: Retire CBQ qdisc] removes CONFIG_NET_SCH_CBQ from the tree, so we drop it from our fragments. Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2022-04-03global: replace is not set with =nBruce Ashfield
Upstream is dropping support for is not set, so we adjust our configs accordingly. Commit: https://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git/commit/?h=for-next&id=55de8686df7ed2b5237867b130e30c728bbd9db4 kconfig: change .config format to use =n instead of "is not set" The .config file uses "# CONFIG_FOO is not set" form to represent disabled options. In the old days, it was useful because the .config was directly included from Makefiles. For example, you can use "ifdef CONFIG_FOO" in Makefiles to check if the option is enabled. Commit c955ccafc38e ("kconfig: fix .config dependencies") introduced include/config/auto.conf, which mirrors the .config, but trims down all disabled options. Since then, include/config/auto.conf defines CONFIG options during the build. The .config is used just for storing the user's configuration. I do not see a strong reason to use a particular pattern of comment for disabled options. With this commit, Kconfig will output disable options in a more natural form, "CONFIG_FOO=n". Kconfig accepts both "# CONFIG_FOO is not set" and "CONFIG_FOO=n" as a valid input. You do not need to update arch/*/configs/*_defconfig files for now. "git bisect" should be able to cross the commit in both ways without any issue. A problem may occur if you parse the .config for the "# ... is not set" patterns. I adjusted streamline_config.pl, merge_config.sh, scripts/kconfig/tests/. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Reviewed-by: Boris Kolpackov <boris@codesynthesis.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2019-10-07meta: add SPDX License Identifier and updates 00-README with License policyYann CARDAILLAC
Signed-off-by: Yann CARDAILLAC <ycnakajsph@gmail.com> Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
2014-01-14master: initial v3.13 updateBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-10-053.12: -rt and BSP patch updates (and removals)Bruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-10-04BFS: v0.441Bruce Ashfield
1/7 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: BFS: v0.441 Date: Fri, 4 Oct 2013 22:03:14 -0400 The Brain Fuck Scheduler v0.441 by Con Kolivas. A single shared runqueue O(n) strict fairness earliest deadline first design. Excellent throughput and latency for 1 to many CPUs on desktop and server commodity hardware. Not recommended for 4096 cpus. Scalability is optimal when your workload is equal to the number of CPUs on bfs. ie you should ONLY do make -j4 on quad core, -j2 on dual core and so on. Features SCHED_IDLEPRIO and SCHED_ISO scheduling policies as well. You do NOT need to use these policies for good performance, they are purely optional for even better performance in extreme conditions. To run something idleprio, use schedtool like so: schedtool -D -e make -j4 To run something isoprio, use schedtool like so: schedtool -I -e amarok Includes accurate sub-tick accounting of tasks so userspace reported cpu usage may be very different if you have very short lived tasks. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 2/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: preempt-desktop-tune Date: Fri, 4 Oct 2013 22:06:13 -0400 Enable preempt by default and make people steer away from voluntary. -ck ] 3/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: hz-no_default_250 Date: Fri, 4 Oct 2013 22:06:16 -0400 Make 250HZ not be the default to discourage desktop users from choosing this option since 1000 will provide better latencies with only miniscule amounts of extra overhead and power consumption. -ck ] 4/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: hz-default_1000 Date: Fri, 4 Oct 2013 22:06:18 -0400 Set default HZ to 1000 which is what most desktop users should still be using. -ck ] 5/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: kconfig-expose_vmsplit_option Date: Fri, 4 Oct 2013 22:06:20 -0400 The options to alter the vmsplit to enable more lowmem are hidden behind the expert option. Make it more exposed for -ck users and make the help menu more explicit about what each option means. -ck ] 6/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: ck1-version Date: Fri, 4 Oct 2013 22:06:22 -0400 Add -ck version in inconspicuous place where it will merge relatively easily with later kernel versions. -ck ] 7/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: urw-locks Date: Fri, 4 Oct 2013 22:06:24 -0400 Implement a variant of read/write locks that use a combination of 1 spinlock and 1 read/write lock to create an upgradeable read/write lock. All r/u/w variants take the spinlock first thus these will favour writers over readers. Once readers have taken the spinlock and the read lock they drop the spinlock thus allowing multiple readers to exist concurrently. The upgradeable variant only takes the spinlock and can be upgraded to write locks or downgraded to read locks. The write locks can be downgraded to read locks. -ck ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-08-213.10: fix Kconfig warningsBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-08-203.10-sched-bfs-440Bruce Ashfield
1/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: 3.10-sched-bfs-440 Date: Tue, 20 Aug 2013 23:55:40 -0400 The Brain Fuck Scheduler v0.440 by Con Kolivas. A single shared runqueue O(n) strict fairness earliest deadline first design. Excellent throughput and latency for 1 to many CPUs on desktop and server commodity hardware. Not recommended for 4096 cpus. Scalability is optimal when your workload is equal to the number of CPUs on bfs. ie you should ONLY do make -j4 on quad core, -j2 on dual core and so on. Features SCHED_IDLEPRIO and SCHED_ISO scheduling policies as well. You do NOT need to use these policies for good performance, they are purely optional for even better performance in extreme conditions. To run something idleprio, use schedtool like so: schedtool -D -e make -j4 To run something isoprio, use schedtool like so: schedtool -I -e amarok Includes accurate sub-tick accounting of tasks so userspace reported cpu usage may be very different if you have very short lived tasks. -ck ] 2/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: preempt-desktop-tune Date: Tue, 20 Aug 2013 23:55:41 -0400 Enable preempt by default and make people steer away from voluntary. -ck ] 3/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: hz-no_default_250 Date: Tue, 20 Aug 2013 23:55:42 -0400 Make 250HZ not be the default to discourage desktop users from choosing this option since 1000 will provide better latencies with only miniscule amounts of extra overhead and power consumption. -ck ] 4/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: hz-default_1000 Date: Tue, 20 Aug 2013 23:55:43 -0400 Set default HZ to 1000 which is what most desktop users should still be using. -ck ] 5/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: kconfig-expose_vmsplit_option Date: Tue, 20 Aug 2013 23:55:43 -0400 The options to alter the vmsplit to enable more lowmem are hidden behind the expert option. Make it more exposed for -ck users and make the help menu more explicit about what each option means. -ck ] 6/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: ck1-version Date: Tue, 20 Aug 2013 23:55:44 -0400 Add -ck version in inconspicuous place where it will merge relatively easily with later kernel versions. -ck ] 7/7 [ Author: Con Kolivas Email: kernel@kolivas.org Subject: urw-locks Date: Tue, 20 Aug 2013 23:55:45 -0400 Implement a variant of read/write locks that use a combination of 1 spinlock and 1 read/write lock to create an upgradeable read/write lock. All r/u/w variants take the spinlock first thus these will favour writers over readers. Once readers have taken the spinlock and the read lock they drop the spinlock thus allowing multiple readers to exist concurrently. The upgradeable variant only takes the spinlock and can be upgraded to write locks or downgraded to read locks. The write locks can be downgraded to read locks. -ck ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-04-23yocto-dev: add v3.9-rc8Bruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-03-22ck: introduce bfs v0.4.24Bruce Ashfield
1/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: introduce bfs v0.4.24 Date: Fri, 22 Mar 2013 20:42:29 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/3.8-sched-bfs-428.patch The Brain Fuck Scheduler v0.424 by Con Kolivas. A single shared runqueue O(n) strict fairness earliest deadline first design. Excellent throughput and latency for 1 to many CPUs on desktop and server commodity hardware. Not recommended for 4096 cpus. Scalability is optimal when your workload is equal to the number of CPUs on bfs. ie you should ONLY do make -j4 on quad core, -j2 on dual core and so on. Features SCHED_IDLEPRIO and SCHED_ISO scheduling policies as well. You do NOT need to use these policies for good performance, they are purely optional for even better performance in extreme conditions. To run something idleprio, use schedtool like so: schedtool -D -e make -j4 To run something isoprio, use schedtool like so: schedtool -I -e amarok Includes accurate sub-tick accounting of tasks so userspace reported cpu usage may be very different if you have very short lived tasks. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 2/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: free swapcache pages and do not copy Date: Fri, 22 Mar 2013 20:43:59 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/mm-drop_swap_cache_aggressively.patch While it may be nice to have a copy of pages on swap once written there, the more garbage we leave in the swapspace the slower any further writes and reads to and from it are. Just free swapcache whenever we can. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 3/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: make memory reclaim respect nice level Date: Fri, 22 Mar 2013 20:45:07 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/mm-kswapd_inherit_prio-1.patch When kswapd is awoken due to reclaim by a running task, set the priority of kswapd to that of the calling task thus making memory reclaim cpu activity affected by nice level. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 4/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: set idleprio tasks to nice 19 for vm reclaim Date: Fri, 22 Mar 2013 20:46:36 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/mm-idleprio_prio-1.patch Set the effective priority of idleprio tasks to that of nice 19 tasks when modifying vm reclaim behaviour. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 5/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: remove expert designation from memory split: Date: Fri, 22 Mar 2013 20:47:34 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/kconfig-expose_vmsplit_option.patch The options to alter the vmsplit to enable more lowmem are hidden behind the expert option. Make it more exposed for -ck users and make the help menu more explicit about what each option means. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 6/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: make 1000HZ the default Date: Fri, 22 Mar 2013 20:48:33 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/hz-default_1000.patch Set default HZ to 1000 which is what most desktop users should still be using. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 7/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: discourage 250HZ as default Date: Fri, 22 Mar 2013 20:49:25 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/hz-no_default_250.patch Make 250HZ not be the default to discourage desktop users from choosing this option since 1000 will provide better latencies with only miniscule amounts of extra overhead and power consumption. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 8/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: enable preempt by default, recommend against voluntary Date: Fri, 22 Mar 2013 20:50:14 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/preempt-desktop-tune.patch Enable preempt by default and make people steer away from voluntary. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 9/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: set localversion -ck Date: Fri, 22 Mar 2013 20:51:08 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/ck1-version.patch Add -ck version in inconspicuous place where it will merge relatively easily with later kernel versions. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] 10/10 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: ck: implement upgradeable read/write locks Date: Fri, 22 Mar 2013 20:51:43 -0700 Imported from: http://ck.kolivas.org/patches/3.0/3.8/3.8-ck1/patches/urw-locks.patch Implement a variant of read/write locks that use a combination of 1 spinlock and 1 read/write lock to create an upgradeable read/write lock. All r/u/w variants take the spinlock first thus these will favour writers over readers. Once readers have taken the spinlock and the read lock they drop the spinlock thus allowing multiple readers to exist concurrently. The upgradeable variant only takes the spinlock and can be upgraded to write locks or downgraded to read locks. The write locks can be downgraded to read locks. -ck Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-02-243.8: update staging featuresBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2013-01-16meta: convert include statements to always explicit .scc filesBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-06-18ck: relocate config post patchesBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-06-15Sched: Import base BFS-423 for v3.4Bruce Ashfield
1/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: Sched: Import base BFS-423 for v3.4 Date: Tue, 12 Jun 2012 14:11:21 -0700 Integrating and porting BFS to v3.4 from: http://ck.kolivas.org/patches/bfs/3.4.0/3.4-sched-bfs-423.patch [The Brain Fuck Scheduler v0.423 by Con Kolivas. A single shared runqueue O(n) strict fairness earliest deadline first design. Excellent throughput and latency for 1 to many CPUs on desktop and server commodity hardware. Not recommended for 4096 cpus. Scalability is optimal when your workload is equal to the number of CPUs on bfs. ie you should ONLY do make -j4 on quad core, -j2 on dual core and so on. Features SCHED_IDLEPRIO and SCHED_ISO scheduling policies as well. You do NOT need to use these policies for good performance, they are purely optional for even better performance in extreme conditions. To run something idleprio, use schedtool like so: schedtool -D -e make -j4 To run something isoprio, use schedtool like so: schedtool -I -e amarok Includes accurate sub-tick accounting of tasks so userspace reported cpu usage may be very different if you have very short lived tasks. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 2/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: mm minimal swappiness Date: Thu, 14 Jun 2012 10:43:31 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [I've yet to find any desktop workload that benefits from anything higher than a swappiness as low as possible. Unfortunately setting it to zero can rarely lead to unexplained stalls in the VM so use 10. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 3/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: mm enable swaptoken only when swap full Date: Thu, 14 Jun 2012 10:46:39 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [The swap token is only useful in conditions of swap thrash, and actually worsens the common case by causing more swapping. Make it only have an effect when swap is more than half full. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 4/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: mm drop swap cache aggressively Date: Thu, 14 Jun 2012 10:48:18 -0700 Integrating and porting BFS from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [While it may be nice to have a copy of pages on swap once written there, the more garbage we leave in the swapspace the slower any further writes and reads to and from it are. Just free swapcache whenever we can. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 5/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: mm kswapd inherit prio 1 Date: Thu, 14 Jun 2012 10:50:20 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [When kswapd is awoken due to reclaim by a running task, set the priority of kswapd to that of the calling task thus making memory reclaim cpu activity affected by nice level. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 6/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: mm idleprio prio 1 Date: Thu, 14 Jun 2012 10:52:13 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [Set the effective priority of idleprio tasks to that of nice 19 tasks when modifying vm reclaim behaviour. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 7/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: mm decrease default dirty ratio 1 Date: Thu, 14 Jun 2012 10:53:24 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [The default dirty ratio is chosen to be a compromise between throughput and overall system latency. On a desktop, if an application writes to disk a lot, that application should be the one to slow down rather than the desktop as a whole. At higher dirty ratio settings, an application could write a lot to disk and then happily use lots of CPU time after that while the rest of the system is busy waiting on that naughty application's disk writes to complete before anything else happening. Lower ratios mean that the application that do a lot of disk writes end up being responsible for their own actions and they're the ones that slow down rather than the system in general. This does decrease overall write throughput, but to the benefit of the latency of the system as a whole with disk writes. Other checks may well round this up to 10 still at startup. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 8/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: kconfig expose vmsplit option Date: Thu, 14 Jun 2012 10:55:27 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [The options to alter the vmsplit to enable more lowmem are hidden behind the expert option. Make it more exposed for -ck users and make the help menu more explicit about what each option means. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 9/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: hz default 1000 Date: Thu, 14 Jun 2012 10:56:36 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [Set default HZ to 1000 which is what most desktop users should still be using. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 10/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: hz no default 250 Date: Thu, 14 Jun 2012 10:57:50 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [Make 250HZ not be the default to discourage desktop users from choosing this option since 1000 will provide better latencies with only miniscule amounts of extra overhead and power consumption. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 11/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: hz raise max Date: Thu, 14 Jun 2012 10:59:11 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [There's some really badly broken software out there that is entirely dependant on HZ for its maximum performance. Raise the maximum HZ value to some higher and slightly unreasonable values up to some higher and completely obscene values. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 12/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: preempt desktop tune Date: Thu, 14 Jun 2012 11:00:14 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [Enable preempt by default and make people steer away from voluntary. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] 13/13 [ Author: Yang Shi Email: yang.shi@windriver.com Subject: ck: ck2-version Date: Thu, 14 Jun 2012 11:01:18 -0700 Integrating and porting from: http://ck.kolivas.org/patches/3.0/3.4/3.4-ck2/patches/ [Add -ck version in inconspicuous place where it will merge relatively easily with later kernel versions. -ck] Signed-off-by: Yang Shi <yang.shi@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-04-11BFS: 3.4 compile fixes (temp)Bruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: BFS: 3.4 compile fixes (temp) Date: Wed, 11 Apr 2012 15:56:13 -0400 Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2012-04-11sched: port 3.3-sched-bfs-420 to v3.4Bruce Ashfield
1/1 [ Author: Bruce Ashfield Email: bruce.ashfield@windriver.com Subject: sched: port 3.3-sched-bfs-420 to v3.4 Date: Wed, 11 Apr 2012 11:17:38 -0400 Integrating and porting BFS to v3.4 from: http://ck.kolivas.org/patches/bfs/3.3.0/3.3-sched-bfs-420.patch Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ] Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-11-14config: add # in front of all bannersBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-07-26meta: relocating small to match .37 locationBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-04-062.6.39 cleanups: relocate smallBruce Ashfield
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
2011-04-04yocto: import of the kernel content/metadata from v2.6.39Paul Gortmaker
Roughly corresponds to: commit db575247e16e50ce5160e18907e253c6a43b6feb Author: Bruce Ashfield <bruce.ashfield@windriver.com> Date: Mon Apr 4 00:27:55 2011 -0400 yocto: 2.6.39 baseline Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com> ...in the full history repo, but with some extraneous files that were deleted post db575247 deleted right here and now at the baseline instead. Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>