struct target_list *head;
                struct target *curr;
                head = target->head;
+               if (type == BKPT_SOFT)
+                       return(breakpoint_add_internal(head->target, address,length, type));
+
                while(head != (struct target_list*)NULL)
                {
                        curr = head->target;
        free(breakpoint);
 }
 
-void breakpoint_remove_internal(struct target *target, uint32_t address)
+int breakpoint_remove_internal(struct target *target, uint32_t address)
 {
        struct breakpoint *breakpoint = target->breakpoints;
 
        if (breakpoint)
        {
                breakpoint_free(target, breakpoint);
+               return 1;
        }
        else
        {
-               LOG_ERROR("no breakpoint at address 0x%8.8" PRIx32 " found", address);
+               if (!target->smp)
+                       LOG_ERROR("no breakpoint at address 0x%8.8" PRIx32 " found", address);
+               return 0;
        }
 }
 void breakpoint_remove(struct target *target, uint32_t address)
 {
+       int found = 0;
        if (target->smp)
        {
                struct target_list *head;
                while(head != (struct target_list*)NULL)
                {
                        curr = head->target;
-                       breakpoint_remove_internal(curr, address);
+                       found += breakpoint_remove_internal(curr, address);
                        head = head->next;
                }
+               if (found == 0)
+                       LOG_ERROR("no breakpoint at address 0x%8.8" PRIx32 " found", address);
        }
        else  breakpoint_remove_internal(target, address);
 }
 
        {
                case 0:
                        return handle_bp_command_list(CMD_CTX);
+
+               case 2:
+                       asid = 0;
+                       COMMAND_PARSE_NUMBER(u32, CMD_ARGV[0], addr);
+                       COMMAND_PARSE_NUMBER(u32, CMD_ARGV[1], length);
+                       return handle_bp_command_set(CMD_CTX, addr, asid, length, hw);
+
                case 3:
 
                        if(strcmp(CMD_ARGV[2], "hw") == 0)