This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generate changelog from REPOs by Zdrowy Gosciu | |
# | |
# Usage : | |
# make-changelog UTC_TIMESTAMP (from last build.prop = ro.build.date.utc) | |
# e.g. make-changelog 1436063245 | |
# Output : DD-MM-YYYY.txt | |
# | |
DZIEN=`date -u -d @$1 +"%d"` | |
MIESIAC=`date -u -d @$1 +"%m"` | |
ROK=`date -u -d @$1 +"%Y"` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. build/envsetup.sh | |
lunch pac_d802-userdebug | |
make -j8 bootimage | |
(...) | |
Made boot image: /home/(...)/out/target/product/d802/boot.img |