Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit e4cf315

Browse files
committed
revert the renaming of esp32/build/ to esp32/build-BASE/
1 parent 57f9e04 commit e4cf315

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
# Build directories
1313
######################
14+
esp32/build/
1415
esp32/build-*/
1516
mpy-cross/build/*
1617
# This map file is generated here instead of the build folder...

esp32/Makefile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,11 @@ ifeq ($(VARIANT),PYGATE)
5555
PYGATE_ENABLED=1
5656
endif
5757

58-
BUILD_DIR ?=build-$(VARIANT)
58+
ifeq ($(VARIANT),BASE)
59+
BUILD_DIR ?=build
60+
else
61+
BUILD_DIR ?=build-$(VARIANT)
62+
endif
5963

6064
BUILD = $(BUILD_DIR)/$(BOARD)/$(BTYPE)
6165

esp32/tools/mpy-build-check.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@ VARIANT="$3"
99
PY_PATH="./frozen"
1010
PY_DIRS="$(ls ${PY_PATH})"
1111
OS="$(uname)"
12-
BUILD_DIR="build-${VARIANT}/${BOARD}/${RELEASE_TYP}"
12+
if [ ${VARIANT} != "BASE" ] ; then
13+
BUILD_DIR="build-${VARIANT}/${BOARD}/${RELEASE_TYP}"
14+
else
15+
BUILD_DIR="build/${BOARD}/${RELEASE_TYP}"
16+
fi
1317

1418
# Script has to be called from esp32 dir
1519
if ! [ $0 = "tools/mpy-build-check.sh" ]; then

esp32/tools/size_check.sh

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,12 @@ set -e
55
BOARD="$1"
66
RELEASE_TYP="$2"
77
VARIANT="$3"
8-
BUILD_DIR="build-${VARIANT}"
8+
if [ ${VARIANT} != "BASE" ] ; then
9+
BUILD_DIR="build-${VARIANT}"
10+
else
11+
BUILD_DIR="build"
12+
fi
13+
914
IMG_MAX_SIZE_8MB=2027520
1015
IMG_MAX_SIZE_4MB=1761280
1116
OS="$(uname)"

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy