13b35611e2
All the components (bootloader, reloader, micropython) has P8 support added some time back but without full integration at the wasp-os level. Let's add it! Signed-off-by: Daniel Thompson <daniel@redfelineninja.org.uk>
45 lines
1 KiB
Python
45 lines
1 KiB
Python
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# Copyright (C) 2020 Daniel Thompson
|
|
|
|
freeze('.', 'watch.py', opt=3)
|
|
freeze('../..',
|
|
(
|
|
'apps/clock.py',
|
|
'apps/flashlight.py',
|
|
'apps/heart.py',
|
|
'apps/launcher.py',
|
|
'apps/pager.py',
|
|
'apps/settings.py',
|
|
'apps/steps.py',
|
|
'apps/stopwatch.py',
|
|
'apps/testapp.py',
|
|
'boot.py',
|
|
'draw565.py',
|
|
'drivers/bma421.py',
|
|
'drivers/battery.py',
|
|
'drivers/cst816s.py',
|
|
'drivers/hrs3300.py',
|
|
'drivers/nrf_rtc.py',
|
|
'drivers/signal.py',
|
|
'drivers/st7789.py',
|
|
'drivers/vibrator.py',
|
|
'fonts/__init__.py',
|
|
'fonts/clock.py',
|
|
'fonts/sans24.py',
|
|
'fonts/sans28.py',
|
|
'fonts/sans36.py',
|
|
'gadgetbridge.py',
|
|
'icons.py',
|
|
'ppg.py',
|
|
'shell.py',
|
|
'wasp.py',
|
|
'widgets.py',
|
|
),
|
|
opt=3
|
|
)
|
|
freeze('../../drivers/flash',
|
|
(
|
|
'bdevice.py',
|
|
'flash/flash_spi.py'
|
|
), opt=3
|
|
)
|