mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-11-26 19:25:02 +00:00
According to new flow, we need "confirm" screens for TONORM. Also simplified default_source folder, with better hints and using PNG image source. image/assets/* are files from issue page. BUG=chrome-os-partner:11078 TEST=make # x86 and arm bitmaps both works. Change-Id: I3701d6ed5a944305e12a01c1841a197d3e18a8cd Reviewed-on: https://gerrit.chromium.org/gerrit/29983 Reviewed-by: Bill Richardson <wfrichar@chromium.org> Commit-Ready: Hung-Te Lin <hungte@chromium.org> Tested-by: Hung-Te Lin <hungte@chromium.org>
18 lines
404 B
Makefile
18 lines
404 B
Makefile
# Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
OUTPUT=bmpblock.bin
|
|
|
|
all:
|
|
for X in *.png; do \
|
|
python -c "import Image; \
|
|
Image.open('$$X').convert('P').save('$${X/png/bmp}')"; \
|
|
done
|
|
bmpblk_utility -c config.yaml $(OUTPUT)
|
|
|
|
clean:
|
|
rm -rf $(OUTPUT) *.bmp
|
|
|
|
.PHONY: all clean
|