mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-22 01:46:39 +00:00
modules: use echo -e for newline prints
This commit is contained in:
parent
68408bbb79
commit
242debfe3e
4 changed files with 4 additions and 3 deletions
|
@ -28,7 +28,7 @@ $(BUILD)/%.o: ./%.c
|
|||
$(TARGET).bso: $(OBJS)
|
||||
@$(CC) $(LDFLAGS) -e _modInit $^ -o $(OUTPUT)/$(TARGET).bso
|
||||
@$(STRIP) -g $(OUTPUT)/$(TARGET).bso
|
||||
@echo "-------------\nBuilt module: "$(TARGET)".bso\n-------------"
|
||||
@echo -e "-------------\nBuilt module: "$(TARGET)".bso\n-------------"
|
||||
|
||||
clean:
|
||||
@rm -rf $(OUTPUT)/$(TARGET).bso
|
||||
|
|
|
@ -981,6 +981,7 @@ struct sdram_params_t210b01
|
|||
/* Specifies the value for MC_MTS_CARVEOUT_REG_CTRL */
|
||||
u32 mc_mts_carveout_reg_ctrl;
|
||||
|
||||
/* Specifies the clients that are allowed to access untranslated memory */
|
||||
u32 mc_untranslated_region_check;
|
||||
|
||||
/* Just a place holder for special usage when there is no BCT for certain registers */
|
||||
|
|
|
@ -28,7 +28,7 @@ $(BUILD)/%.o: ./%.c
|
|||
$(TARGET).bso: $(OBJS)
|
||||
@$(CC) $(LDFLAGS) -e _minerva_init $^ -o $(OUTPUT)/$(TARGET).bso
|
||||
@$(STRIP) -g $(OUTPUT)/$(TARGET).bso
|
||||
@echo "-------------\nBuilt module: "$(TARGET)".bso\n-------------"
|
||||
@echo -e "-------------\nBuilt module: "$(TARGET)".bso\n-------------"
|
||||
|
||||
clean:
|
||||
@rm -rf $(OUTPUT)/$(TARGET).bso
|
||||
|
|
|
@ -35,7 +35,7 @@ $(BUILD)/%.o: ./%.c
|
|||
$(TARGET).bso: $(OBJS)
|
||||
@$(CC) $(LDFLAGS) -e _modInit $^ -o $(OUTPUT)/$(TARGET).bso
|
||||
@$(STRIP) -g $(OUTPUT)/$(TARGET).bso
|
||||
@echo "-------------\nBuilt module: "$(TARGET)".bso\n-------------"
|
||||
@echo -e "-------------\nBuilt module: "$(TARGET)".bso\n-------------"
|
||||
|
||||
clean:
|
||||
@rm -rf $(OUTPUT)/$(TARGET).bso
|
||||
|
|
Loading…
Reference in a new issue