Nicolas Cellier uploaded a new version of Kernel to project The Inbox:
http://source.squeak.org/inbox/Kernel-nice.1017.mcz==================== Summary ====================
Name: Kernel-nice.1017
Author: nice
Time: 3 May 2016, 11:40:36.82624 pm
UUID: 303ddbb3-6c74-4e3f-9838-501b7b1373f0
Ancestors: Kernel-mt.1016
Avoid dependency on Graphics package just for startup order.
Note that it is going to be a bootstrap problem.
=============== Diff against Kernel-mt.1016 ===============
Item was changed:
----- Method: EventSensor class>>initialize (in category 'class initialization') -----
initialize
+ Smalltalk addToStartUpList: self before: ProcessorScheduler.
- Smalltalk addToStartUpList: self after: Cursor.
Smalltalk addToShutDownList: self.
self installKeyDecodeTable.
self installMouseDecodeTable.
self install.
!